Dealing with Complex Error Structures in Time Series
The assumption of "no serial correlation" (TS.5) means that the errors in our regression are uncorrelated across time.
Corr(ut, us) = 0 for all t ≠ s
Serial Correlation (or autocorrelation) is the violation of this assumption. It means the errors are correlated over time. The most common form is an AR(1) model for the errors:
ut = ρut-1 + et
This is very common in static or FDL models where the dynamics are not fully captured.
This should sound familiar! The consequences are very similar to those of heteroskedasticity.
The Bottom Line: Just like with heteroskedasticity, your coefficient estimates are fine, but your statistical inference is invalid.
The easiest and most modern solution is to use standard errors that are robust to both heteroskedasticity and serial correlation. These are often called HAC (Heteroskedasticity and Autocorrelation Consistent) or Newey-West standard errors.
It's still useful to test for serial correlation. The simplest test is for AR(1) serial correlation.
H0: ρ = 0 in ut = ρut-1 + et
Important: If your model includes a lagged dependent variable (or any regressor that isn't strictly exogenous), you must include all of the original x's in the auxiliary regression in step 2 for the test to be valid!
You estimate a static model of the Phillips Curve and find strong evidence of AR(1) serial correlation. Your friend says, "This means your estimate of the unemployment coefficient is biased and inconsistent." Is your friend correct? Why or why not?
Your friend is incorrect. Serial correlation alone does not cause bias or inconsistency in the OLS estimators. The key assumption for consistency is contemporaneous exogeneity (TS.3'), which is not violated by serial correlation in the errors.
The problem is with inference. You cannot trust the usual t-statistic on the unemployment coefficient. You should re-calculate it using a serial correlation-robust standard error.
If we assume the errors follow a specific model (like AR(1)) and the regressors are strictly exogenous, we can use FGLS to get more efficient estimates than OLS.
This procedure purges the serial correlation, leading to more efficient estimates and valid standard errors (if the AR(1) model is correct).
Serial correlation is a common feature of time series regressions, but we have a clear set of tools to diagnose and handle it.