Learn R Programming

effectsize (version 0.2.0)

standardize_info: Get Standardization Information

Description

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 devided. The "basic" method of standardization uses

Usage

standardize_info(model, robust = FALSE, ...)

Arguments

model

A statistical model.

robust

Logical, if TRUE, centering is done by substracting the median from the variables and dividing it by the median absolute deviation (MAD). If FALSE, variables are standardized by substracting the mean and dividing it by the standard deviation (SD).

...

Arguments passed to or from other methods.

Examples

Run this code
# NOT RUN {
model <- lm(Sepal.Width ~ Sepal.Length * Species, data = iris)
# }

Run the code above in your browser using DataLab