Dear all,
I am trying to estimate dynamic panel data on GDP growth rates with a large T, far greater than N. The estimation method is xtregar. The model follows an AR(1) disturbance.
I have a quadratic equation, and my coefficients are all linear. In the model, I have a bunch of dummies, and categorical variables, among others. Macro variables are in logs or percentages, and data are stationary.
My model is specified as
Where Y is the dependent variable of interest, GDP at level, Z is a set of control variables, and D is a set of dummy and categorical variables. T is an operator for some kind of indicators, continuous indicator variables, not binary, allowed to interact with them.
I am studding the impact on the calculated GDP growth, so they are entering it as data. (yi,t − yi,t−1 ) they have been calculated, already. GDP % growth is the dependent variable, and the lag of GDP at level enters the equation as a predictor variable. T is an indicator, and an overall constant a ((1-a)yt-1) in my model is included. Z is a vector of control variables that affect the level of GDP.
I have some trivial doubts about xtregar syntax:
1. Because in xtregar there is an AR1 disturbance, do I need to put in the syntax the lag operator for Y in my model ,gdp at level, or is the variable by itself enough?
The code I run is
should it look like that or
Risking in that case to case two lags instead of one?
2. Also, since there is a term (α − 1)yi,t−1 to be entered in the equation, how is that added with Lincom in order to get the results in a nice table? How do I get the lincom to calculate (a-1), which will appear in a table with esttab? .
3. Also, since I am interested in margins will I have to change the margins code to take into account those calculations for
4. How are the Baltagi-Wu LBI test reported with estab and when to perform two-step estimate of correlation?
I am trying to estimate dynamic panel data on GDP growth rates with a large T, far greater than N. The estimation method is xtregar. The model follows an AR(1) disturbance.
I have a quadratic equation, and my coefficients are all linear. In the model, I have a bunch of dummies, and categorical variables, among others. Macro variables are in logs or percentages, and data are stationary.
My model is specified as
Code:
(yi,t − yi,t−1 )= (α − 1)yi,t−1 + β1yi,t−1 + β2T yi,t−1 + β3T 2yi,t−1 + yi, t+Σ1Nβ4+nyi,t + +β5Ζi,t+Di,t+μt+ηi,+εi,t
I am studding the impact on the calculated GDP growth, so they are entering it as data. (yi,t − yi,t−1 ) they have been calculated, already. GDP % growth is the dependent variable, and the lag of GDP at level enters the equation as a predictor variable. T is an indicator, and an overall constant a ((1-a)yt-1) in my model is included. Z is a vector of control variables that affect the level of GDP.
I have some trivial doubts about xtregar syntax:
1. Because in xtregar there is an AR1 disturbance, do I need to put in the syntax the lag operator for Y in my model ,gdp at level, or is the variable by itself enough?
The code I run is
Code:
xtregar, gdpgrowth, gdplevel and other macro variables dummies. c.indicator#c.indicator, fe
Code:
xtregar, gdpgrowth, L. gdplevel and other macro variables dummies. c.indicator#c.indicator, fe
Risking in that case to case two lags instead of one?
2. Also, since there is a term (α − 1)yi,t−1 to be entered in the equation, how is that added with Lincom in order to get the results in a nice table? How do I get the lincom to calculate (a-1), which will appear in a table with esttab? .
3. Also, since I am interested in margins will I have to change the margins code to take into account those calculations for
Code:
(α − 1)yi,t−1.
4. How are the Baltagi-Wu LBI test reported with estab and when to perform two-step estimate of correlation?
Comment