Description Usage Arguments Value Methods (by class)
The default method returns broom::tidy(lmtest::coeftest(x, ...))
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ## S3 method for class 'amce'
tidify(x, margins = FALSE, ...)
## S3 method for class 'betareg'
tidify(
x,
margins = FALSE,
data = if (is.null(x$model)) { margins::find_data(x) } else { x$model },
variables = NULL,
...
)
## S3 method for class 'clm'
tidify(x, margins = FALSE, ...)
## S3 method for class 'crch'
tidify(x, margins = FALSE, ...)
## Default S3 method:
tidify(x, margins = FALSE, ...)
## S3 method for class 'glm'
tidify(x, margins = FALSE, ...)
## S3 method for class 'lm'
tidify(x, margins = FALSE, vcov. = stats::vcov, variables = NULL, ...)
## S3 method for class 'svymnlogit'
tidify(x, margins = FALSE, ...)
## S3 method for class 'svyolr'
tidify(x, margins = margins, ...)
tidify(x, margins = FALSE, ...)
|
x |
A model object. |
margins |
logical. Serve up marginal effects from package |
... |
other arguments to |
data |
data.frame. Where is the data located? Defaults to data within the model object. |
variables |
character. Which terms to get effects for. Default |
vcov. |
a specification of the covariance matrix. See |
A data.frame
.
amce
: AMCE objects from package cjoint
betareg
: margins
plays strangely with betareg
objects; this method works around those quirks
clm
: uses coeftest
crch
: uses coeftest
default
: The method for otherwise unhandled objects.
glm
: GLM
lm
: uses lmtest::coeftest
with chosen covariance matrix.
svymnlogit
: svymnlogit
svyolr
: reaches into survey
to get the right vcov
for use in lmtest::coeftest
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.