Dear All,
What could be the reason(s) for this undesired result? (please see codes and results below). In the model, y is the dependent variable, controlling for only its lagged, l.y. The "g" parameter is the coefficient of the endogenous regressor. I'm raising the parameter to a variable called 'gap'. This variable is the number years separating observed years in an irregularly spaced panel, e.g 1992 and 1996, gap=4, 1996 and 2004, gap=8 and so on. "m" stands for the actual number of observed periods. For instance if between 1970 and 2010 datasets were collected for only 19 years within the period, m=1, ..., 19 while actual T=40. In this case, data is missing for all observations for 40-19 = 21 years. If the gaps are ignored the panel will have T=19. Doing this will bias the results, and neither is of interest to me. It is for this reason am accounting for gaps by trying to use NLS fixed effect estimator.
Help will be much appreciated.
Thanks,
Dapel
What could be the reason(s) for this undesired result? (please see codes and results below). In the model, y is the dependent variable, controlling for only its lagged, l.y. The "g" parameter is the coefficient of the endogenous regressor. I'm raising the parameter to a variable called 'gap'. This variable is the number years separating observed years in an irregularly spaced panel, e.g 1992 and 1996, gap=4, 1996 and 2004, gap=8 and so on. "m" stands for the actual number of observed periods. For instance if between 1970 and 2010 datasets were collected for only 19 years within the period, m=1, ..., 19 while actual T=40. In this case, data is missing for all observations for 40-19 = 21 years. If the gaps are ignored the panel will have T=19. Doing this will bias the results, and neither is of interest to me. It is for this reason am accounting for gaps by trying to use NLS fixed effect estimator.
Help will be much appreciated.
Thanks,
Dapel
Code:
. nl (y=l.y*{g}^gap) if m>1 (obs = 432) Iteration 0: residual SS = 1.64e+08 Source | SS df MS -------------+------------------------------ Number of obs = 432 Model | -141461844 -1 141461844 R-squared = -6.2283 Residual | 164174641 432 380033.89 Adj R-squared = -6.2116 -------------+------------------------------ Root MSE = 616.4689 Total | 22712796.1 431 52697.9028 Res. dev. = 6776.306 ------------------------------------------------------------------------------ y | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- /g | 0 (constrained) ------------------------------------------------------------------------------ Parameter g taken as constant term in model & ANOVA table
Comment