Try to tidy a model with broom::tidy(). If it fails, will try to tidy the
model using parameters::model_parameters() through tidy_parameters().
Arguments
- x
(a model object, e.g.
glm)
A model to be tidied.- conf.int
(
logical)
Whether or not to include a confidence interval in the tidied output.- conf.level
(
numeric)
The confidence level to use for the confidence interval (between0ans1).- ...
Additional parameters passed to
broom::tidy()orparameters::model_parameters().
Note
For quantreg::rq() models, if the result contains several tau values,
a "component" column is added and populated
with the value of the "tau" column.
See also
Other custom_tidiers:
tidy_broom(),
tidy_multgee(),
tidy_parameters(),
tidy_svy_vglm(),
tidy_vgam(),
tidy_zeroinfl()