4

What happens if you reject normality of residuals when estimating with least squares?

Is it too important to have normality on the residuals?

Nick Cox
  • 48,377
  • 8
  • 110
  • 156
anabella
  • 43
  • 3

1 Answers1

7

The $t$-statistic is assumed to be distributed asymptotically normally for hypothesis tests. If your residuals are severely non-normal, your $t$-statistics, $p$-values, and hypothesis tests will be meaningless.

Your $\hat{\beta}$ estimates are still okay, but you cannot express confidence in the $\beta$s.

You can try and use some form of robust standard error that controls for non-normality. Alternatively, if your dataset is very large and your $\hat{\beta}$ estimates are very far from zero, you might be able to get away with it.

gregmacfarlane
  • 3,242
  • 21
  • 34
  • gmacfarlane, the t-test (the unequal variance version) is actually equivalent to use of robust standard errors. In samples of at least modest size and with independent observations, the property that actually matters is constant variance; if the observations in your two groups have it, the equal variance t-test will be fine. If they don't, the unequal variance t-test will _still_ be fine. Normality (or non-Normality) of the residuals is just not very important; the Central Limit Theorem takes care of the distribution of the t-statistic. – guest Jun 03 '12 at 03:50
  • What if the error distribution is not normal by any normality test, but is symmetric and majority of the residuals are near to zero? Something like a t distribution? Assumption satisfied? – user41490 Mar 07 '14 at 10:55
  • 2
    I believe that statistic inference is destroyed more than implied above. And non-normality of residuals is sometimes indicative of not having the best transformation of $Y$. – Frank Harrell Mar 07 '14 at 13:23