Dear all,
At the moment I am learning to use xtabond2. After reading through many discussions here, I still have two questions. Thank you very much for your help!
1) Is it OK to include multiple lags of the independent variable in order to get a p-value larger than 0.05 for the AR(2) test (securing the absence of autocorrelation)? And when doing so, can I still include instruments starting at lag 2 in the gmm option? So basically is it OK to run something like
2) What happens intuitively when specifying the eq(diff) option in gmm()? I get very similar point estimates when running the following model with eq(diff) compared to the one above
The only difference is that the Hansen test is insignificant in the second model, which is what I want (if I understand correctly. The Sargan test is significant though, I don´t know if that´s problematic). I´ve read that the eq(diff) reduces the number of instruments and that this might be better to pass the Hansen test, but I am not sure if I understood that correctly.
Thanks a lot!
All the best
Leon
At the moment I am learning to use xtabond2. After reading through many discussions here, I still have two questions. Thank you very much for your help!
1) Is it OK to include multiple lags of the independent variable in order to get a p-value larger than 0.05 for the AR(2) test (securing the absence of autocorrelation)? And when doing so, can I still include instruments starting at lag 2 in the gmm option? So basically is it OK to run something like
Code:
xtabond2 y l.y l2.y x i.t, gmm(y x, collapse lag(2 .)) iv(i.t, eq(level)) cluster(id) twostep small
Code:
xtabond2 y l.y l2.y x i.t, gmm(y x, collapse lag(2 .) eq(diff)) iv(i.t, eq(level)) cluster(id) twostep small
Thanks a lot!
All the best
Leon
Comment