Assume that you have a regression with a whole set of variables and you know that the residuals are not normal distributed. So you just estimate a regression using OLS to find the best linear fit. For this you disclaim the assumption of normal distributed error terms. After the estimation you have 2 "significant" coefficients. But how can anyone interpret these coefficients? So there is no way to say: "These coefficients are significant", although the Hypothesis $\beta=0$ can be declined with a high t-statistic (because of disclaiming normal error assumption). But what to do in this case? How would you argue?
|
If the residuals are not normal (and note that this applies to the theoretical residuals rather than the observed residuals), but not overly skewed or with outliers then the Central Limit Theorem applies and the inference on the slopes (t-tests, confidence intervals) will be approximately correct. The quality of the approximation depends on the sample size and the degree and type of non-normality in the residuals. The CLT works fine for the inference on the slopes, but does not apply to prediction intervals for new data. If your not happy with the CLT argument (small sample sizes, skewness, just not sure, want a second opinion, want to convince a skeptic, etc.) then you can use bootstrap or permutation methods which do not depend on the normality assumption. |
|||
|
|
If the errors are not normally distributed, asymptotic results can be used. Suppose your model is $$y_i=x_i'\beta+\varepsilon_i$$ where $(y_i,x_i',\varepsilon_i)$, $i=1,...,n$ is an iid sample. Assume \begin{align*} E(\varepsilon_i|x_i)&=0 \\ E(\varepsilon_i^2|x_i)&=\sigma^2 \end{align*} and $$rank(Ex_ix_i')=K,$$ where $K$ is the number of coefficients. Then usual OLS estimate $\hat\beta$ is asymptoticaly normal: $$\sqrt{n}(\hat\beta-\beta)\to N(0,\sigma^2E(x_ix_i'))$$ Practical implications of this result are that the usual t-statistics become z-statistics, i.e. their distribution is normal instead of Student. So you can interpret t-statistics as usual, only p-values should be adjusted for normal distribution. Note that since this result is asymptotic, it does not hold for small sample sizes. Also the assumptions used can be relaxed. |
|||||||||||||||
|