Hi all,
After reading the forum regarding my question, I am still wondering about the interpretation. I have a dataset similar to the grunfeld dataset and therefore I am using the grufield set in order to get familiar with my question. I was namely wondering what the interpretation would be if I estimate my model by first differencing. I know the interpretation stays the same when I use first differencing and fixed effects with two time periods. I was wondering however what the interpretation would be when I a: I only first difference the dependent variable and my other variables stay in levels and b: what the interpretation would be if I additionally lag my explanatory variables. I would be very greatful if someone could help me with the interpretation. Moreover under a and b should I include company fixed effects?
This quote says interpretation should be the same is you first difference both. But after reading I am not sure about mine.
After reading the forum regarding my question, I am still wondering about the interpretation. I have a dataset similar to the grunfeld dataset and therefore I am using the grufield set in order to get familiar with my question. I was namely wondering what the interpretation would be if I estimate my model by first differencing. I know the interpretation stays the same when I use first differencing and fixed effects with two time periods. I was wondering however what the interpretation would be when I a: I only first difference the dependent variable and my other variables stay in levels and b: what the interpretation would be if I additionally lag my explanatory variables. I would be very greatful if someone could help me with the interpretation. Moreover under a and b should I include company fixed effects?
This quote says interpretation should be the same is you first difference both. But after reading I am not sure about mine.
Originally posted by Jesse Wursten
View Post
Code:
webuse grunfeld . keep if year==1951 | year==1952 (180 observations deleted) . xtset company year panel variable: company (strongly balanced) time variable: year, 1951 to 1952 delta: 1 year . xtreg invest mvalue kstock i.time, fe Fixed-effects (within) regression Number of obs = 20 Group variable: company Number of groups = 10 R-sq: Obs per group: within = 0.8413 min = 2 between = 0.6347 avg = 2.0 overall = 0.6358 max = 2 F(3,7) = 12.37 corr(u_i, Xb) = -0.4483 Prob > F = 0.0035 ------------------------------------------------------------------------------ invest | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- mvalue | .0675063 .066438 1.02 0.343 -.0895947 .2246073 kstock | .5776233 .115057 5.02 0.002 .3055567 .84969 18.time | -12.81064 10.53266 -1.22 0.263 -37.71642 12.09515 _cons | -128.3884 97.66454 -1.31 0.230 -359.3284 102.5515 -------------+---------------------------------------------------------------- sigma_u | 186.5057 sigma_e | 16.083172 rho | .99261855 (fraction of variance due to u_i) ------------------------------------------------------------------------------ F test that all u_i=0: F(9, 7) = 85.90 Prob > F = 0.0000 . reg D.(invest mvalue kstock) i.time, nocons Source | SS df MS Number of obs = 10 -------------+---------------------------------- F(3, 7) = 12.37 Model | 19201.1351 3 6400.37836 Prob > F = 0.0035 Residual | 3621.35789 7 517.336841 R-squared = 0.8413 -------------+---------------------------------- Adj R-squared = 0.7733 Total | 22822.493 10 2282.2493 Root MSE = 22.745 ------------------------------------------------------------------------------ D.invest | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- mvalue | D1. | .0675063 .066438 1.02 0.343 -.0895947 .2246073 | kstock | D1. | .5776233 .115057 5.02 0.002 .3055567 .84969 | 18.time | -12.81064 10.53266 -1.22 0.263 -37.71642 12.09515 ------------------------------------------------------------------------------ As you can see here it is the same Now I only use FD on the dependent variable reg D.invest mvalue kstock i.time, nocons Source | SS df MS Number of obs = 10 -------------+---------------------------------- F(3, 7) = 27.58 Model | 21042.1245 3 7014.04151 Prob > F = 0.0003 Residual | 1780.36844 7 254.338349 R-squared = 0.9220 -------------+---------------------------------- Adj R-squared = 0.8886 Total | 22822.493 10 2282.2493 Root MSE = 15.948 ------------------------------------------------------------------------------ D.invest | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- mvalue | .0259089 .0063405 4.09 0.005 .010916 .0409019 kstock | .0077066 .0231235 0.33 0.749 -.0469717 .0623849 18.time | -11.79278 8.227355 -1.43 0.195 -31.24739 7.661817 now I lag my independent variables reg D.invest L.mvalue L.kstock i.time, nocons Source | SS df MS Number of obs = 10 -------------+---------------------------------- F(3, 7) = 30.02 Model | 21176.6158 3 7058.87192 Prob > F = 0.0002 Residual | 1645.87721 7 235.125316 R-squared = 0.9279 -------------+---------------------------------- Adj R-squared = 0.8970 Total | 22822.493 10 2282.2493 Root MSE = 15.334 ------------------------------------------------------------------------------ D.invest | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- mvalue | L1. | .0258598 .0053399 4.84 0.002 .0132329 .0384867 | kstock | L1. | .0120669 .0221206 0.55 0.602 -.0402401 .0643739 | 18.time | -11.93865 7.886201 -1.51 0.174 -30.58655 6.709256
Comment