View source: R/custom_tidiers.R
tidy_vgam | R Documentation |
vglm
or a vgam
model
A tidier for models generated with
VGAM::vglm()
or VGAM::vgam()
.
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_vgam(x, conf.int = TRUE, conf.level = 0.95, ...)
x |
( |
conf.int |
( |
conf.level |
( |
... |
Additional parameters passed to |
Other custom_tieders:
tidy_broom()
,
tidy_multgee()
,
tidy_parameters()
,
tidy_with_broom_or_parameters()
,
tidy_zeroinfl()
library(VGAM)
mod <- vglm(
Species ~ Sepal.Length + Sepal.Width,
family = multinomial(),
data = iris
)
mod |> tidy_vgam(exponentiate = TRUE)
mod <- vglm(
Species ~ Sepal.Length + Sepal.Width,
family = multinomial(parallel = TRUE),
data = iris
)
mod |> tidy_vgam(exponentiate = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.