Hello Stata community,
currently I examine if firms provide bullshit news disclosures.
To examine this I used the following codes:
Interpretation:
In the three-way model, various effects are siginificant.
If the firm is large and is facing controversies, it provides less bullshit.
If the firm is a polluter and faces controversies, it provides less bullshit.
If the firm large, a polluter and faces controversies, it provides more bullshit.
Are the threeway effects that simple to interprete? Or am I missing something important from the data?
What does 1.Large , 1.Polluter and 1.Controversy describe?
Second Question:
Why are the interaction effects only siginificant in the three way model and not in the two-way model?
Best regards
Luca
currently I examine if firms provide bullshit news disclosures.
To examine this I used the following codes:
Code:
xtset FIRM Year Three-way model: reghdfe Bullshit x1 x2 x3 x4 x6 LARGE##POLLUTER##CONTROVERSY, absorb(FIRM Year) cluster(FIRM)
Code:
HDFE Linear regression Number of obs = 816 Absorbing 2 HDFE groups F( 11, 218) = 21.63 Statistics robust to heteroskedasticity Prob > F = 0.0000 R-squared = 0.6360 Adj R-squared = 0.4894 Within R-sq. = 0.0284 Number of clusters (FIRM) = 219 Root MSE = 0.0128 (Std. err. adjusted for 219 clusters in FIRM) -------------------------------------------------------------------------------------------- | Robust Bullshit | Coefficient std. err. t P>|t| [95% conf. interval] ---------------------------+---------------------------------------------------------------- x1 | 2.18e-07 1.15e-07 1.90 0.059 -8.48e-09 4.44e-07 x2 | .0000792 .0000704 1.13 0.261 -.0000595 .0002179 x3 | -.0011349 .0013584 -0.84 0.404 -.0038122 .0015424 x4 | 0 (omitted) x6 | .0001505 .0000955 1.58 0.117 -.0000377 .0003387 1.LARGE | -.002641 .0039933 -0.66 0.509 -.0105115 .0052294 1.POLLUTER | -.0003113 .002018 -0.15 0.878 -.0042885 .003666 | LARGE#POLLUTER | 1 1 | .0054256 .0040318 1.35 0.180 -.0025208 .0133719 | 1.CONTROVERSY | .0177814 .0024065 7.39 0.000 .0130384 .0225244 | LARGE#CONTROVERSY | 1 1 | -.0179408 .0043084 -4.16 0.000 -.0264323 -.0094492 | POLLUTER#CONTROVERSY | 1 1 | -.0160671 .0025222 -6.37 0.000 -.0210381 -.0110962 | LARGE#POLLUTER#CONTROVERSY | 1 1 1 | .0125052 .0059916 2.09 0.038 .0006962 .0243141 | _cons | .0624834 .0059209 10.55 0.000 .0508138 .074153 --------------------------------------------------------------------------------------------
Code:
Alternatively, the two way model using POLLUTER CONTROVERSY. reghdfe Bullshit x1 x2 x3 x4 x6 POLLUTER##CONTROVERSY, absorb(FIRM Year) cluster(FIRM) HDFE Linear regression Number of obs = 816 Absorbing 2 HDFE groups F( 7, 218) = 1.45 Statistics robust to heteroskedasticity Prob > F = 0.1876 R-squared = 0.6336 Adj R-squared = 0.4895 Within R-sq. = 0.0218 Number of clusters (FIRM) = 219 Root MSE = 0.0128 (Std. err. adjusted for 219 clusters in FIRM) -------------------------------------------------------------------------------------- | Robust Bullshit | Coefficient std. err. t P>|t| [95% conf. interval] ---------------------+---------------------------------------------------------------- x1 | 2.21e-07 1.15e-07 1.93 0.055 -4.47e-09 4.47e-07 x2 | .0000796 .0000713 1.12 0.265 -.0000608 .0002201 x3 | -.0010632 .0013383 -0.79 0.428 -.0037009 .0015745 x4 | 0 (omitted) x6 | .0001539 .0000958 1.61 0.110 -.0000349 .0003427 1.POLLUTER | .0011961 .0018756 0.64 0.524 -.0025005 .0048927 1.CONTROVERSY | .0003586 .003288 0.11 0.913 -.0061218 .006839 | POLLUTER#CONTROVERSY | 1 1 | -.0004579 .0037676 -0.12 0.903 -.0078835 .0069676 | _cons | .0610246 .0058705 10.40 0.000 .0494545 .0725947 -------------------------------------------------------------------------------------- Absorbed degrees of freedom: -----------------------------------------------------+ Absorbed FE | Categories - Redundant = Num. Coefs | -------------+---------------------------------------| FIRM | 219 219 0 *| Year | 5 0 5 | -----------------------------------------------------+ * = FE nested within cluster; treated as redundant for DoF computation
Interpretation:
In the three-way model, various effects are siginificant.
If the firm is large and is facing controversies, it provides less bullshit.
If the firm is a polluter and faces controversies, it provides less bullshit.
If the firm large, a polluter and faces controversies, it provides more bullshit.
Are the threeway effects that simple to interprete? Or am I missing something important from the data?
What does 1.Large , 1.Polluter and 1.Controversy describe?
Second Question:
Why are the interaction effects only siginificant in the three way model and not in the two-way model?
Best regards
Luca
Comment