Hi (all),
I have been trying to solve this issue for a few days now. Unfortunately, I did not find a solution that works. Therefore, let me try here:
I am running a panel data regression for 63 countries and 23 years (1996-2018). My independent variable is 'socio-economic development', comprised of three seperate (predictor) variables 'GDPlog' 'LifeExpectancy', and 'Urbanization rate'. I have lagged these independent variables. My dependent variable is a computed proxy for 'Individualism' (data gathered from the World Value Survey - which is aggregated to the country level).
After running the model with both time- and country-fixed effects, a lot of values turn out insignificant (see output). In this regression, 'IQ' (institutional quality) and 'EI' (Economic Inequality) serve as a moderator. For this regression, however, I have not yet created the interaction effects. The variables 'PS', 'HD', and 'GEN' are control variables.
I would greatly appreciate all the help!! (I am quite the rookie).
Thank you!
I have been trying to solve this issue for a few days now. Unfortunately, I did not find a solution that works. Therefore, let me try here:
I am running a panel data regression for 63 countries and 23 years (1996-2018). My independent variable is 'socio-economic development', comprised of three seperate (predictor) variables 'GDPlog' 'LifeExpectancy', and 'Urbanization rate'. I have lagged these independent variables. My dependent variable is a computed proxy for 'Individualism' (data gathered from the World Value Survey - which is aggregated to the country level).
After running the model with both time- and country-fixed effects, a lot of values turn out insignificant (see output). In this regression, 'IQ' (institutional quality) and 'EI' (Economic Inequality) serve as a moderator. For this regression, however, I have not yet created the interaction effects. The variables 'PS', 'HD', and 'GEN' are control variables.
I would greatly appreciate all the help!! (I am quite the rookie).
Thank you!
Code:
. xtreg IDV lnGDPpw lnLE lnURB IQ EI PS HD GEN i.Year, fe
Fixed-effects (within) regression Number of obs = 687
Group variable: ID Number of groups = 60
R-squared: Obs per group:
Within = 0.2229 min = 1
Between = 0.0022 avg = 11.4
Overall = 0.0027 max = 19
F(27,600) = 6.37
corr(u_i, Xb) = -0.3502 Prob > F = 0.0000
------------------------------------------------------------------------------
IDV | Coefficient Std. err. t P>|t| [95% conf. interval]
-------------+----------------------------------------------------------------
lnGDPpw | -.0149985 .0320457 -0.47 0.640 -.0779338 .0479368
lnLE | -.0235256 .0470972 -0.50 0.618 -.116021 .0689698
lnURB | .0417426 .0133699 3.12 0.002 .0154852 .0680001
IQ | .0129416 .0038266 3.38 0.001 .0054265 .0204568
EI | .0664247 .0426652 1.56 0.120 -.0173666 .1502159
PS | -6.02e-11 3.28e-11 -1.84 0.067 -1.25e-10 4.14e-12
HD | -.1772328 .0423389 -4.19 0.000 -.2603832 -.0940823
GEN | -.0034419 .0024012 -1.43 0.152 -.0081578 .0012739
|
Year |
1998 | -.0452868 .0128549 -3.52 0.000 -.0705329 -.0200407
1999 | -.0487066 .0127952 -3.81 0.000 -.0738353 -.0235779
2000 | -.0485705 .0127925 -3.80 0.000 -.073694 -.023447
2001 | -.0475299 .0127604 -3.72 0.000 -.0725904 -.0224694
2002 | -.0463023 .0127169 -3.64 0.000 -.0712774 -.0213272
2003 | -.0451734 .0126634 -3.57 0.000 -.0700433 -.0203034
2004 | -.0440253 .0126264 -3.49 0.001 -.0688227 -.0192279
2005 | -.0470253 .0124831 -3.77 0.000 -.0715412 -.0225095
2006 | -.0457833 .0124636 -3.67 0.000 -.0702609 -.0213058
2007 | -.0447061 .0124359 -3.59 0.000 -.0691293 -.0202829
2008 | -.0438945 .0124104 -3.54 0.000 -.0682676 -.0195214
2009 | -.0433583 .0124209 -3.49 0.001 -.0677521 -.0189646
2010 | -.0442326 .0124327 -3.56 0.000 -.0686496 -.0198156
2011 | -.0433819 .0124256 -3.49 0.001 -.0677848 -.0189789
2012 | -.0427049 .0124232 -3.44 0.001 -.0671032 -.0183066
2013 | -.0418179 .0124166 -3.37 0.001 -.0662032 -.0174325
2014 | -.041259 .0124139 -3.32 0.001 -.065639 -.0168789
2017 | -.0468404 .0123093 -3.81 0.000 -.071015 -.0226658
2018 | -.0462844 .0123093 -3.76 0.000 -.0704589 -.0221098
|
_cons | 1.051972 .2245873 4.68 0.000 .6108988 1.493044
-------------+----------------------------------------------------------------
sigma_u | .04974205
sigma_e | .01070822
rho | .95570923 (fraction of variance due to u_i)
------------------------------------------------------------------------------
F test that all u_i=0: F(59, 600) = 49.14 Prob > F = 0.0000

Comment