Suppose I want to estimate the following model using System GMM:
\[ \Delta logy_t \equiv logy_t-logy_{t-1} = \alpha logy_{t-1} + \beta x_t + e \]
Given that the estimation of System GMM involves taking orthogonal deviations (or first differences), I am confused as to which of the following ways should I actually write my Stata commands?
Command 1:
Command 2:
I am asking this question because in the paper of Roodman titled "How to do xtabond2: An introduction to difference and system GMM in Stata", it is mentioned on page 17 that the equations implied by Command 1 and 2 are equivalent. But when estimating, he seems to estimate using the equation implied by Command 2. Given my objective model, which command should I use here? Thank you for your help.
\[ \Delta logy_t \equiv logy_t-logy_{t-1} = \alpha logy_{t-1} + \beta x_t + e \]
Given that the estimation of System GMM involves taking orthogonal deviations (or first differences), I am confused as to which of the following ways should I actually write my Stata commands?
Command 1:
Code:
xtabond2 Δlogyt logyt-1 xt , /// gmm(logyt-1, collapse) ivstyle( xt , equation(diff)) /// ivstyle(xt , equation(level)) /// twostep robust orthogonal
Code:
xtabond2 logyt logyt-1 xt, /// gmm(logyt-1, collapse) ivstyle( xt, equation(diff)) /// ivstyle(xt, equation(level)) /// twostep robust orthogonal
Comment