Learn R Programming

SciencesPo (version 0.05.21)

beta.coef: Standardized Beta Coefficients

Description

Generate standardized beta coefficients from an adjusted model. Standardized coefficients refer to how many standard deviations a dependent variable will change per standard deviation increase in the predictor variable. See details.

Usage

beta.coef(md)

Arguments

md
is a linear object model.

Value

  • a numeric value of standardized beta coefficient.

encoding

UTF-8

Details

Standardized beta coefficients are values estimated from unstandardized coefficients, which are only partially adjusted by the quotient of the standard deviation of an independent variable, and the standard deviation of a dependent variable. Essentially, beta coefficients report the relative importance of each independent variables. Then, this standardization is rather useful for multiple regression models, once it may aid on identifying critical IV.

References

Baguley, T. (2009) Standardized or simple effect size: What should be reported?. British Journal of Psychology, 100(3), 603-617.

Gelman, A., & Hill, J. (2006) Data analysis using regression and multilevel/hierarchical models. Cambridge University Press.

See Also

galton

Examples

Run this code
data(galton) #get some data

#fit a linear regression (OLS) model.

(model <- lm(child ~ parent, data = galton) )

#finally, apply standardization to the coefficients.

beta.coef(model)

Run the code above in your browser using DataLab