View source: R/custom_tidiers.R
| tidy_svy_vglm | R Documentation |
svy_vglm model
A tidier for models generated with
svyVGAM::svy_vglm().
Term names will be updated to be consistent with generic models. The original
term names are preserved in an "original_term" column. Depending on the
model, additional column "group", "component" and/or "y.level" may be
added to the results.
tidy_svy_vglm(x, conf.int = TRUE, conf.level = 0.95, ...)
x |
( |
conf.int |
( |
conf.level |
( |
... |
Additional parameters passed to |
Other custom_tidiers:
tidy_broom(),
tidy_multgee(),
tidy_parameters(),
tidy_vgam(),
tidy_with_broom_or_parameters(),
tidy_zeroinfl()
library(svyVGAM)
mod <- svy_vglm(
Species ~ Sepal.Length + Sepal.Width,
family = multinomial(),
design = survey::svydesign(~1, data = iris)
)
mod |> tidy_svy_vglm(exponentiate = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.