View source: R/standardize_info.R
standardize_info | R Documentation |
This function extracts information, such as the deviations (SD or MAD) from parent variables, that are necessary for post-hoc standardization of parameters. This function gives a window on how standardized are obtained, i.e., by what they are divided. The "basic" method of standardization uses.
standardize_info(model, ...)
## Default S3 method:
standardize_info(
model,
robust = FALSE,
two_sd = FALSE,
include_pseudo = FALSE,
verbose = TRUE,
...
)
model |
A statistical model. |
... |
Arguments passed to or from other methods. |
robust |
Logical, if |
two_sd |
If |
include_pseudo |
(For (G)LMMs) Should Pseudo-standardized information be included? |
verbose |
Toggle warnings and messages on or off. |
A data frame with information on each parameter (see
parameters_type()
), and various standardization coefficients
for the post-hoc methods (see standardize_parameters()
) for the predictor
and the response.
Other standardize:
standardize_parameters()
model <- lm(mpg ~ ., data = mtcars)
standardize_info(model)
standardize_info(model, robust = TRUE)
standardize_info(model, two_sd = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.