Extract model estimates in a tidy format.
Description
A unified approach to extract results from a wide variety of models. For some models get_estimates
attaches useful attributes to the output. You can access this information by calling the attributes
function: attributes(get_estimates(model))
Usage
get_estimates(
model,
conf_level = 0.95,
vcov = NULL,
shape = NULL,
coef_rename = FALSE,
...
)
Arguments
model
|
a single model object |
conf_level
|
numeric value between 0 and 1. confidence level to use for confidence intervals. Setting this argument to NULL does not extract confidence intervals, which can be faster for some models.
|
vcov
|
robust standard errors and other manual statistics. The
|
shape
|
|
coef_rename
|
logical, named or unnamed character vector, or function
|
…
|
all other arguments are passed through to three functions. See the documentation of these functions for lists of available arguments.
|