Serial Correlation in the Errors
Serial correlation (also called autocorrelation) means the regression errors are correlated across time, the canonical case being a first-order autoregressive process with . Crucially, like heteroskedasticity, serial correlation does not bias OLS: under strict exogeneity the coefficients stay unbiased and consistent. What it breaks is the usual variance formula, so the standard errors are wrong, and the and statistics built on them are invalid. The practical message is that you can keep the OLS point estimates but must repair the inference.
Why it matters
If a shock in one quarter tends to carry into the next, the errors move in runs rather than independently. OLS still finds the right line on average, but it overstates how much independent information the sample contains, so the reported standard errors are typically too small and the statistics look more impressive than they should. The estimates are honest; the precision is not.
Formulas
Worked examples
After fitting a static time-series model you suspect the errors are positively autocorrelated.
Estimate `regress y x, robust`, predict the residuals with `predict uhat, resid`, then regress them on their own lag: `regress uhat L.uhat`. A large, significant coefficient on `L.uhat` estimates rho and signals AR(1) serial correlation. The OLS slope on `x` is still unbiased, but its default standard error is not.
Common mistakes
- ✗Serial correlation biases the OLS coefficients. Under strict exogeneity the coefficients remain unbiased and consistent; only the standard errors are affected.
- ✗Positive serial correlation makes standard errors too large. It typically makes the default standard errors too small, so statistics are overstated.
- ✗Serial correlation and heteroskedasticity are unrelated problems. They are parallel: both leave OLS unbiased but invalidate the usual variance estimator, and both have robust-standard-error fixes.
- ✗If is small the problem can be ignored. Even modest autocorrelation distorts inference, and with a lagged dependent variable serial correlation can also threaten consistency.
Revision bullets
- •Serial correlation = errors correlated over time
- •Canonical case is AR(1),
- •OLS stays unbiased under strict exogeneity
- •The usual standard errors are wrong, so and tests fail
- •Parallel to heteroskedasticity: fix the inference, keep the estimates
Quick check
When the errors are serially correlated but strict exogeneity holds, OLS coefficient estimates are:
In the AR(1) error process , the parameter measures:
Connected topics
Sources
- Wooldridge (2019), §12.1Wooldridge, Jeffrey M. Introductory Econometrics: A Modern Approach. 7th ed. Cengage, 2019.Defines serial correlation, the AR(1) model, and shows that OLS stays unbiased while its standard errors become invalid.
- Greene (2018), Ch. 20Greene, William H. Econometric Analysis. 8th ed. Pearson, 2018.Detailed treatment of autocorrelated disturbances and their effect on OLS efficiency and inference.