tidy.clm: Tidy method for 'clm' objects.

Description Usage Arguments Details Value Examples

Description

This method tidies the coefficients of a clm object into a data frame.

Usage

1
2
3
4
## S3 method for class 'clm'
tidy(x, conf.int = FALSE, conf.level = 0.95,
  exponentiate = FALSE, quick = FALSE, cluster = FALSE,
  vcov = NULL, ...)

Arguments

x

clm object

conf.int

Logical: whether to include a confidence interval

conf.level

confidence level of the interval, used only if conf.int = TRUE

exponentiate

Logical: whether to exponentiate the coefficient estimates and confidence intervals

quick

Logical: whether to compute a smaller and faster version

cluster

Logical: whether to use clustered standard errors

vcov

an alternative variance/covariance matrix, used only if cluster = TRUE

...

extra arguments

Details

If you have missing values in your model data, you may need to refit the model with na.action = na.exclude.

Value

tidy data frame

Examples

1
2
3
4
5
6
## Not run: 
require(ordinal)
fm1 <- clm(rating ~ temp * contact, data = wine)
tidy(fm1)

## End(Not run)

dnbarron/tidyclm documentation built on May 15, 2019, 9:38 a.m.