std.coef | R Documentation |
Standardize model coefficients by Standard Deviation or Partial Standard Deviation.
std.coef(x, partial.sd, ...)
partial.sd(x)
# Deprecated:
beta.weights(model)
x , model |
a fitted model object. |
partial.sd |
logical, if set to |
... |
additional arguments passed to |
Standardizing model coefficients has the same effect as centring and scaling the input variables. “Classical” standardized coefficients are calculated as \myequation\beta^*_i = \beta_i\fracs_X_is_y \betaᵢ* = \betaᵢ (sₓᵢ / Sᵧ) Bi* = Bi * (SXi / Sy) , where \myequation\beta\betaB is the unstandardized coefficient, \myequations_X_isₓᵢSXi is the standard deviation of associated dependent variable \myequationX_iXᵢXi and \myequations_ySᵧSy is SD of the response variable.
If variables are intercorrelated, the standard deviation of
\myequationX_iXᵢXi
used in computing the standardized coefficients
\myequation\beta_i^*\betaᵢ*Bi* should be
replaced by the partial standard deviation of
\myequationX_iXᵢXi which is adjusted for
the multiple correlation of
\myequationX_iXᵢXi with the other X
variables
included in the regression equation. The partial standard deviation is
calculated as
\myequations_X_i^*=s_X_i VIF(X_i)^-0.5 (\fracn-1n-p )^0.5
s*ₓᵢ = sₓᵢ √(VIFₓᵢ⁻¹) √((n-1)/(n-p))
sXi* = SXi * sqrt(1/VIF(Xi)) * sqrt((n-1)/(n-p)),
where VIF is the variance inflation factor,
n is the number of observations and p, the number of predictors in
the model. The coefficient is then transformed as
\myequation\beta^*_i = \beta_i s_X_i^*
\betaᵢ* = \betaᵢ s*ₓᵢ
Bi* = Bi * SXi*.
A matrix with at least two columns for the standardized coefficient estimate and its standard error. Optionally, the third column holds degrees of freedom associated with the coefficients.
Kamil Bartoń. Variance inflation factors calculation is based
on function vif
from package car written by Henric Nilsson and John
Fox.
Cade, B.S. 2015 Model averaging and muddled multimodel inferences. Ecology 96, 2370-2382.
Afifi, A., May, S., Clark, V.A. 2011 Practical Multivariate Analysis, Fifth Edition. CRC Press.
Bring, J. 1994 How to standardize regression coefficients. The American Statistician 48, 209–213.
partial.sd
can be used with stdize
.
coef
or coeffs
and coefTable
for
unstandardized coefficients.
# Fit model to original data:
fm <- lm(y ~ x1 + x2 + x3 + x4, data = GPA)
# Partial SD for the default formula: y ~ x1 + x2 + x3 + x4
psd <- partial.sd(lm(data = GPA))[-1] # remove first element for intercept
# Standardize data:
zGPA <- stdize(GPA, scale = c(NA, psd), center = TRUE)
# Note: first element of 'scale' is set to NA to ignore the first column 'y'
# Coefficients of a model fitted to standardized data:
zapsmall(coefTable(stdizeFit(fm, newdata = zGPA)))
# Standardized coefficients of a model fitted to original data:
zapsmall(std.coef(fm, partial = TRUE))
# Standardizing nonlinear models:
fam <- Gamma("inverse")
fmg <- glm(log(y) ~ x1 + x2 + x3 + x4, data = GPA, family = fam)
psdg <- partial.sd(fmg)
zGPA <- stdize(GPA, scale = c(NA, psdg[-1]), center = FALSE)
fmgz <- glm(log(y) ~ z.x1 + z.x2 + z.x3 + z.x4, zGPA, family = fam)
# Coefficients using standardized data:
coef(fmgz) # (intercept is unchanged because the variables haven't been
# centred)
# Standardized coefficients:
coef(fmg) * psdg
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.