Skip to content

Multiple linear Regression: Standardized Coefficients

2 messages · David Studer, Kenn Konstabel

#
It's a bit dangerous to call them "betas" in this list. Standardized
regression coefficients sounds much better :)

A simple  way is to  first standardize your variables and then run lm again.

lm(scale(height)~scale(age) + factor(sex))
# or, depending on what you want:
lm(height~scale(age)+factor(sex))
# or, but only for Statistica and SPSS users:
lm(scale(height)~scale(age) + scale(sex))

# But of course, it's pointless in your case: standardization makes
sense when units don't matter
# but years and meters (even feet and inches, for that matter!) make
much more sense than sd
# "units" of  an  unknown sample.

KK
On 2/15/12, David Studer <studerov at gmail.com> wrote: