Hello, I have a country and time fixed effect panel data (1985-2020) and 210 countries. (Using xtreg command)
I have three questions:
1. The gradual addition of variable in a regression has a technical term which I forgot. If you know the term please let me know.
2. Since I have fixed time effect, do I have to include i.year in every line or add it when all variables are in the last command?
3. How to interpret the years which are statistically significant
4. Do I also have to interpret sigma e and u?
Thank you.
I have three questions:
1. The gradual addition of variable in a regression has a technical term which I forgot. If you know the term please let me know.
2. Since I have fixed time effect, do I have to include i.year in every line or add it when all variables are in the last command?
3. How to interpret the years which are statistically significant
4. Do I also have to interpret sigma e and u?
Code:
. xtreg patrat rnd_L1 rinterest govtinfluence researchers exports tertiary i.year, fe vce (cluster countryid)
Fixed-effects (within) regression Number of obs = 245
Group variable: countryid Number of groups = 19
R-squared: Obs per group:
Within = 0.3911 min = 1
Between = 0.0360 avg = 12.9
Overall = 0.0497 max = 22
F(17, 18) = .
corr(u_i, Xb) = -0.3941 Prob > F = .
(Std. err. adjusted for 19 clusters in countryid)
-------------------------------------------------------------------------------
| Robust
patrat | Coefficient std. err. t P>|t| [95% conf. interval]
--------------+----------------------------------------------------------------
rnd_L1 | 2126.027 968.6726 2.19 0.042 90.92132 4161.133
rinterest | -8.623156 61.71921 -0.14 0.890 -138.2904 121.0441
govtinfluence | 2515.222 1044.284 2.41 0.027 321.2633 4709.181
researchers | 11.59978 315.6822 0.04 0.971 -651.6239 674.8234
exports | -7.59e-09 1.82e-09 -4.16 0.001 -1.14e-08 -3.76e-09
tertiary | 10.60074 8.216852 1.29 0.213 -6.662226 27.86371
|
year |
1998 | 2138.259 4477.179 0.48 0.639 -7267.945 11544.46
2000 | 5272.5 4098.802 1.29 0.215 -3338.763 13883.76
2002 | 5433.746 4243.408 1.28 0.217 -3481.324 14348.82
2003 | 6065.682 4394.566 1.38 0.184 -3166.958 15298.32
2004 | 6909.649 4603.323 1.50 0.151 -2761.574 16580.87
2005 | 7056.43 4754.351 1.48 0.155 -2932.091 17044.95
2006 | 6134.375 4363.421 1.41 0.177 -3032.832 15301.58
2007 | 5170.367 4156.456 1.24 0.229 -3562.024 13902.76
2008 | 4695.539 4191.898 1.12 0.277 -4111.312 13502.39
2009 | 4618.774 3998.354 1.16 0.263 -3781.455 13019
2010 | 5107.141 4140.362 1.23 0.233 -3591.437 13805.72
2011 | 5420.778 4268.75 1.27 0.220 -3547.533 14389.09
2012 | 5555.76 4408.601 1.26 0.224 -3706.368 14817.89
2013 | 5663.731 4642.599 1.22 0.238 -4090.008 15417.47
2014 | 5477.33 4497.866 1.22 0.239 -3972.337 14927
2015 | 5693.621 4531.896 1.26 0.225 -3827.539 15214.78
2016 | 5628.207 4380.078 1.28 0.215 -3573.995 14830.41
2017 | 5800.678 4414.901 1.31 0.205 -3474.685 15076.04
2018 | 5906.987 4544.846 1.30 0.210 -3641.38 15455.35
2019 | 5685.905 4455.138 1.28 0.218 -3673.992 15045.8
2020 | 5440.221 4256.401 1.28 0.217 -3502.146 14382.59
|
_cons | 2272.985 4108.67 0.55 0.587 -6359.01 10904.98
--------------+----------------------------------------------------------------
sigma_u | 18149.373
sigma_e | 1963.744
rho | .98842845 (fraction of variance due to u_i)
-------------------------------------------------------------------------------
Thank you.

Comment