Hi everyone,
I am running a system GMM model like the following
x1, x2, x3 are firm's financial variables. I don't think I can assume they are strictly exogenous, so I think the model looks okay.
As far as I know, the estimation is basically consistent with fixed effects model as it uses difference equation where individual time-invariant effects are purged.
Here, while I was doing some experiments, I unintentionally included a time-invariant variable as a regressor and found the coefficient was estimated.
It seems odd to me as I thought xtabond is like a fixed effects model.
Is it a bug or am I mistaken about xtabond2?
I am running a system GMM model like the following
Code:
xtset firm year xtabond2 L(0/1).y x1 x2 x3 i.year, gmm(L.y x1 x2 x3, lag(1 1) collapse) ivstyle(i.year, equation(level)) robust
As far as I know, the estimation is basically consistent with fixed effects model as it uses difference equation where individual time-invariant effects are purged.
Here, while I was doing some experiments, I unintentionally included a time-invariant variable as a regressor and found the coefficient was estimated.
It seems odd to me as I thought xtabond is like a fixed effects model.
Is it a bug or am I mistaken about xtabond2?
Comment