Aliases: tidy.clm ordinal_tidiers
Keywords:
### ** Examples # feel free to ignore the following lineāit allows {broom} to supply # examples without requiring the model-supplying package to be installed. if (requireNamespace("ordinal", quietly = TRUE)) { # load libraries for models and data library(ordinal) # fit model fit <- clm(rating ~ temp * contact, data = wine) # summarize model fit with tidiers tidy(fit) tidy(fit, conf.int = TRUE, conf.level = 0.9) tidy(fit, conf.int = TRUE, conf.type = "Wald", exponentiate = TRUE) glance(fit) augment(fit, type.predict = "prob") augment(fit, type.predict = "class") # ...and again with another model specification fit2 <- clm(rating ~ temp, nominal = ~contact, data = wine) tidy(fit2) glance(fit2) }