model_list_higher_order_variables {broom.helpers} | R Documentation |
List higher order variables of a model
Description
List higher order variables of a model
Usage
model_list_higher_order_variables(model)
## Default S3 method:
model_list_higher_order_variables(model)
Arguments
model |
a model object |
See Also
Other model_helpers:
model_compute_terms_contributions()
,
model_get_assign()
,
model_get_coefficients_type()
,
model_get_contrasts()
,
model_get_model()
,
model_get_model_frame()
,
model_get_model_matrix()
,
model_get_n()
,
model_get_nlevels()
,
model_get_offset()
,
model_get_pairwise_contrasts()
,
model_get_response()
,
model_get_response_variable()
,
model_get_terms()
,
model_get_weights()
,
model_get_xlevels()
,
model_identify_variables()
,
model_list_contrasts()
,
model_list_terms_levels()
,
model_list_variables()
Examples
lm(hp ~ mpg + factor(cyl) + disp:hp, mtcars) %>%
model_list_higher_order_variables()
mod <- glm(
response ~ stage * grade + trt:stage,
gtsummary::trial,
family = binomial
)
mod %>% model_list_higher_order_variables()
mod <- glm(
Survived ~ Class * Age + Sex,
data = Titanic %>% as.data.frame(),
weights = Freq,
family = binomial
)
mod %>% model_list_higher_order_variables()
[Package broom.helpers version 1.15.0 Index]