Comments on Can the relative magnitude of standardized coefficients indicate variable importance?
Parent
Can the relative magnitude of standardized coefficients indicate variable importance?
Comparing the standardized coefficients (resulting from linear regression) across different samples can be problematic (because the sample variances can be influenced by measurement error).
But can the standardized coefficients of two different variables be compared in one sample - to ascertain which variable has a 'larger effect' ?
Is it a reasonable way to infer the larger effect - even if an imperfect one?
Post
Why, yes. If one has a linear regression $\mathbf{y} = \mathbf{X} \mathbf{\beta} + \mathbf{\epsilon}$ and models the errors as i.i.d Gaussians with known standard deviation $\sigma$ then the likelihood function for the "true" coefficients will be a multivariate Gaussian with that standard deviation.
The covariance matrix that determines this multivariate Gaussian will be the same as the covariance matrix of the columns of $X$. This is because we are orthogonally projecting the spherical Gaussian distribution surrounding $y$ onto the hyperplane defined by $X$.
Of course for less than 30 data points we don't know the right standard deviation and so we have to use a T-distribution for our likelihood function.
As for the OP's particular question of how to test whether one coefficient is greater than another: for large samples, all we need to do is run our linear regression, then run it again with the two coefficients "pegged" to equal each other (by merging two columns of the $\mathbf{X}$ matrix), and look at the relative increase in the standard deviation of our error estimate; that gives us our test statistic which we can plug into the one-tailed Z-test. (Briefly, this computes how far, in units of standard deviations of the error, the line $\beta_1=\beta_2$ is from the estimated parameters.)
The same approach works for testing whether one coefficient is greater or less than any linear combination of the other coefficients.

0 comment threads