Get the model frame of a model
The structure of the object returned by stats::model.frame()
could slightly differ for certain types of models.
model_get_model_frame()
will always return an object
with the same data structure or NULL
if it is not possible
to compute model frame from model
.
model_get_model_frame(model) ## Default S3 method: model_get_model_frame(model) ## S3 method for class 'coxph' model_get_model_frame(model) ## S3 method for class 'survreg' model_get_model_frame(model)
model |
a model object |
Other model_helpers:
model_compute_terms_contributions()
,
model_get_assign()
,
model_get_coefficients_type()
,
model_get_contrasts()
,
model_get_model_matrix()
,
model_get_model()
,
model_get_nlevels()
,
model_get_n()
,
model_get_offset()
,
model_get_response()
,
model_get_terms()
,
model_get_weights()
,
model_get_xlevels()
,
model_identify_variables()
,
model_list_contrasts()
,
model_list_terms_levels()
,
model_list_variables()
lm(hp ~ mpg + factor(cyl), mtcars) %>% model_get_model_frame() %>% head()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.