Hello Statalist!
Currently I run a regression and wanted to check if my variables explain a lot of variation in the dependent variable.
To do this I once ran the regression with control variables and once without. The adjusted R-squared is only larger by one percent if I include control variables. All of them are variables identified as important by previous literature.
Now I am hesitant to report this. Does this mean something is wrong with my model?
I also tried deleting my main variables and just include the controls, and the adjusted R-squared is still at 89 percent.
I included time and individual fixed effects, clustered for individual.
Cross-posted here:
https://stats.stackexchange.com/ques...trol-variables.
Similarily, once without the controls:
And once without the other IV:
Currently I run a regression and wanted to check if my variables explain a lot of variation in the dependent variable.
To do this I once ran the regression with control variables and once without. The adjusted R-squared is only larger by one percent if I include control variables. All of them are variables identified as important by previous literature.
Now I am hesitant to report this. Does this mean something is wrong with my model?
I also tried deleting my main variables and just include the controls, and the adjusted R-squared is still at 89 percent.
I included time and individual fixed effects, clustered for individual.
Cross-posted here:
https://stats.stackexchange.com/ques...trol-variables.
Code:
. reghdfe Y1 x1 x2 x3 c1 c2 c3 c4 c5 c6 c7 c8 c9, absorb(FIRM Year) cluster(FIRM) (dropped 8 singleton observations) (MWFE estimator converged in 6 iterations) HDFE Linear regression Number of obs = 967 Absorbing 2 HDFE groups F( 12, 215) = 4.20 Statistics robust to heteroskedasticity Prob > F = 0.0000 R-squared = 0.8595 Adj R-squared = 0.8151 Within R-sq. = 0.0566 Number of clusters (FIRM) = 216 Root MSE = 0.1304 (Std. err. adjusted for 216 clusters in FIRM) ------------------------------------------------------------------------------ | Robust Y1 | Coefficient std. err. t P>|t| [95% conf. interval] -------------+---------------------------------------------------------------- x1 | .0274918 .0196236 1.40 0.163 -.0111875 .0661712 x2 | -.0207942 .0100225 -2.07 0.039 -.0405492 -.0010391 x3 | -.0019367 .000597 -3.24 0.001 -.0031134 -.00076 c1 | .1019985 .058054 1.76 0.080 -.0124293 .2164264 c2 | -.016942 .0090505 -1.87 0.063 -.034781 .0008971 c3 | -.0003009 .0058301 -0.05 0.959 -.0117923 .0111905 c4 | .0068474 .0265863 0.26 0.797 -.0455557 .0592505 c5 | .0363782 .0308575 1.18 0.240 -.0244438 .0972001 c6 | -.0004864 .0009786 -0.50 0.620 -.0024153 .0014426 c7 | -.1023495 .089382 -1.15 0.253 -.2785266 .0738277 c8 | .0001882 .0000738 2.55 0.012 .0000426 .0003337 c9 | .0066574 .0023477 2.84 0.005 .0020299 .0112849 _cons | -3.505176 1.365308 -2.57 0.011 -6.19628 -.8140728 ------------------------------------------------------------------------------ Absorbed degrees of freedom: -----------------------------------------------------+ Absorbed FE | Categories - Redundant = Num. Coefs | -------------+---------------------------------------| FIRM | 216 216 0 *| Year | 5 0 5 | -----------------------------------------------------+ * = FE nested within cluster; treated as redundant for DoF computation
Code:
. reghdfe Y1 x1 x2 x3, absorb(FIRM Year) cluster(FIRM) (dropped 8 singleton observations) (MWFE estimator converged in 6 iterations) HDFE Linear regression Number of obs = 967 Absorbing 2 HDFE groups F( 3, 215) = 5.28 Statistics robust to heteroskedasticity Prob > F = 0.0016 R-squared = 0.8549 Adj R-squared = 0.8114 Within R-sq. = 0.0262 Number of clusters (FIRM) = 216 Root MSE = 0.1317 (Std. err. adjusted for 216 clusters in FIRM) ------------------------------------------------------------------------------ | Robust Y1 | Coefficient std. err. t P>|t| [95% conf. interval] -------------+---------------------------------------------------------------- x1 | .0207614 .0198057 1.05 0.296 -.0182767 .0597995 x2 | -.0213535 .0101183 -2.11 0.036 -.0412973 -.0014098 x3 | -.0019855 .0005953 -3.34 0.001 -.0031589 -.0008122 _cons | -.9862518 .0393388 -25.07 0.000 -1.063791 -.9087126 ------------------------------------------------------------------------------ Absorbed degrees of freedom: -----------------------------------------------------+ Absorbed FE | Categories - Redundant = Num. Coefs | -------------+---------------------------------------| FIRM | 216 216 0 *| Year | 5 0 5 | -----------------------------------------------------+ * = FE nested within cluster; treated as redundant for DoF computation
Code:
. reghdfe Y1 c1 c2 c3 c4 c5 c6 c7 c8 c9, absorb(FIRM Year) cluster(FIRM) (dropped 8 singleton observations) (MWFE estimator converged in 6 iterations) HDFE Linear regression Number of obs = 967 Absorbing 2 HDFE groups F( 9, 215) = 2.89 Statistics robust to heteroskedasticity Prob > F = 0.0030 R-squared = 0.8557 Adj R-squared = 0.8109 Within R-sq. = 0.0314 Number of clusters (FIRM) = 216 Root MSE = 0.1319 (Std. err. adjusted for 216 clusters in FIRM) ------------------------------------------------------------------------------ | Robust Y1 | Coefficient std. err. t P>|t| [95% conf. interval] -------------+---------------------------------------------------------------- c1 | .1182841 .0640627 1.85 0.066 -.0079873 .2445556 c2 | -.0174848 .0088881 -1.97 0.050 -.0350038 .0000342 c3 | -.000514 .0058961 -0.09 0.931 -.0121356 .0111076 c4 | -.0000784 .0279881 -0.00 0.998 -.0552447 .0550879 c5 | .0416486 .0315728 1.32 0.189 -.0205832 .1038804 c6 | -.0008959 .000984 -0.91 0.364 -.0028354 .0010436 c7 | -.09267 .0946564 -0.98 0.329 -.2792434 .0939033 c8 | .0002231 .0000741 3.01 0.003 .000077 .0003691 c9 | .0060863 .002376 2.56 0.011 .001403 .0107696 _cons | -3.877952 1.484846 -2.61 0.010 -6.804671 -.9512319 ------------------------------------------------------------------------------ Absorbed degrees of freedom: -----------------------------------------------------+ Absorbed FE | Categories - Redundant = Num. Coefs | -------------+---------------------------------------| FIRM | 216 216 0 *| Year | 5 0 5 | -----------------------------------------------------+ * = FE nested within cluster; treated as redundant for DoF computation
Comment