Hi I would like to know how I can lag variables in the instrumental variable regression to estimate the effect of education on wages. Below is the example from widely used example of the effect of parents income on wages. As I have already lagged the education should I lag the fathers income(fincome) by 2 lag periods or 1 to overcome simultaneity bias, Please suggest if I am doing this correctly. Below is my code.
Thanks
Code:
xtset year id ivreg2 lnwages L.union (L.educ= L.fincome i.year i.state), sfirst savefirst robust cluster(id)
Comment