Use parameters::model_parameters()
to tidy a model and apply
parameters::standardize_names(style = "broom")
to the output
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 (between0
ans1
).- ...
Additional parameters passed to
parameters::model_parameters()
.
Note
For betareg::betareg()
, the component column in the results is standardized
with broom::tidy()
, using "mean"
and "precision"
values.
See also
Other custom_tieders:
tidy_broom()
,
tidy_multgee()
,
tidy_with_broom_or_parameters()
,
tidy_zeroinfl()
Examples
if (FALSE) { # interactive()
if (.assert_package("parameters", boolean = TRUE)) {
lm(Sepal.Length ~ Sepal.Width + Species, data = iris) |>
tidy_parameters()
}
}