First differenced estimator
A first differenced (FD) estimator is used to address omitted variable bias.
Contents
Description
Consider a model as:
Yi = β0 + β1Xi + ϵi
If the data generating process is in fact based on both the observed Xi and some unobserved Zi, the regression will feature omitted variable bias.
One method for addressing this bias, if the confounding variable does not vary over time, is to collect multiple periods of data. There are now two models:
Yit = β0 + β1Xit + β2Zi + ϵit for all observations i and time periods t
Yi,t-1 = β0 + β1Xi,t-1 + β2Zi + ϵi,t-1 for all observations i and for time periods t=[2,T]
Subtracting the latter from the former leads to a new model:
Yit - Yi,t-1 = (β0 + β1Xit + β2Zi + ϵit) - (β0 + β1Xi,t-1 + β2Zi + ϵi,t-1)
Yit - Yi,t-1 = β1Xit - β1Xi,t-1 + ϵit - ϵi,t-1
Yit - Yi,t-1 = β1(Xit - Xi,t-1) + ϵit - ϵi,t-1
ΔYi = β1ΔXi + ϵit - ϵi,t-1
...for all observations i and for time periods t=[2,T].
In fact, all time-invariant variables are removed from the model by taking first differences.
