When later months are noisier than early months, ordinary OLS treats every point equally. Fit WLS with weights that down-weight high-variance periods and compare the slope to OLS.
When later months are noisier than early months, ordinary OLS treats every point equally. Fit WLS with weights that down-weight high-variance periods and compare the slope to OLS.
Weighted least squares minimises Σ w_t (y_t − x_t′β)². If Var(ε_t) is larger for some t, those points should get smaller weight (often w_t = 1/σ_t²). WLS addresses heteroscedasticity, not autocorrelation. Do not treat WLS as a cure for lagged errors.
Constructed 30-point series whose noise scale grows with time. Teaching data.
Printed OLS and WLS slopes with their standard errors. They will be similar but not identical. WLS SEs use the weights; they are still not valid if residuals are serially correlated.
WLS gives more influence to precise early points. That is appropriate when variance clearly grows. If the real problem is autocorrelation, WLS is the wrong tool and GLS or a lagged-error model is next.
WLS handles unequal variances. It does not remove serial correlation.