Hi,
I would like to determine the effect size of the interaction term and plot the interaction accordingly. However, I am struggling to confirm the effect size using the margins command.
CEO_Celeb3 is a binary variable indicating the celebrity status of a CEO. 1 = CEO is considered to be a celebrity and 0 otherwise.
CNS is a CEO narcissism indicator and my dependent variable is the number of positive tone press releases (PR) around a specific firm event. The variable CNS is standardized.
From my interpretation, it appears that the influence of the CEO narcissism tendency on the number of issued PR is stronger for celebrity CEOs.
When it comes to interpreting the effect size I would go with: Ceteris paribus, increasing CNS by one SD (0.6455761) is associated with an 0.928 SD increase in published press releases when the CEO is a celebrity. Given that the SD of my y variable is 0.637 the effect size would be calculated as 0.928*0.637 = 0.60. In other words, increasing CNS by one SD is associated with an ~ 0.60 increase in published press releases when the CEO is a celebrity.
I am well aware of the fact that such interpretations are highly debatable in the sense of their meaningfulness but would appreciate it if someone could clarify whether the interpretation is correct in the first place.
I am struggling to confirm the effect size using margins:
According to margins, the effect would be 0.3765594-0.2020967 = 0.17
I am wondering what contributes to the different results. My guess would be that these two results aren't really comparable due to different values of CNS in the regression analysis. That is, CNS might not even take on it's mean value of 0.0006369 for the regression coefficients.
I am happy about any comments on my problem.
I would like to determine the effect size of the interaction term and plot the interaction accordingly. However, I am struggling to confirm the effect size using the margins command.
Code:
Negative binomial regression Number of obs = 1,285 Wald chi2(37) = . Dispersion: mean Prob > chi2 = . Log pseudolikelihood = -824.95521 Pseudo R2 = 0.0709 -------------------------------------------------------------------------------------------------------------------------------------------- | Robust IM_Offsetting | Coefficient std. err. z P>|z| [95% conf. interval] ---------------------------------------------------------------------------+---------------------------------------------------------------- CEO_tenure | .0105915 .011397 0.93 0.353 -.0117462 .0329291 CEO_Age | .0257327 .0100673 2.56 0.011 .0060011 .0454643 CEO_Gender | -.454186 .335237 -1.35 0.175 -1.111238 .2028664 Acq_MA_exp | .0303799 .013696 2.22 0.027 .0035363 .0572235 Deal_Value | 1.13e-11 1.95e-11 0.58 0.561 -2.69e-11 4.95e-11 Deal_AllCash | -.4187356 .2615526 -1.60 0.109 -.9313693 .0938981 Deal_Stock | -.3219534 .2822003 -1.14 0.254 -.8750559 .2311491 Targ_Listing | .0394426 .0495802 0.80 0.426 -.0577328 .136618 FF12_Div | .254928 .1234985 2.06 0.039 .0128754 .4969807 Acq_Size_MB_ratio | 1.024231 .6737465 1.52 0.128 -.2962874 2.34475 Acq_Lev_WWU | .0102851 .0233773 0.44 0.660 -.0355336 .0561038 Acq_TobinsQ_WWU | .0537747 .0613892 0.88 0.381 -.066546 .1740953 Acq_FCF | 2.038891 1.559126 1.31 0.191 -1.016939 5.094722 Acq_Cash_hold | .4754442 .4200388 1.13 0.258 -.3478167 1.298705 Acq_ROA | -1.830164 1.528498 -1.20 0.231 -4.825965 1.165638 1.CEO_celeb3 | -.1467234 .2383542 -0.62 0.538 -.613889 .3204422 CNS | .0360034 .1035405 0.35 0.728 -.1669321 .238939 | CEO_celeb3#c.CNS | 1 | .9279872 .3289432 2.82 0.005 .2832704 1.572704
Code:
. gen sample = 1 if e(sample) == 1 . sum CNS if sample == 1 Variable | Obs Mean Std. dev. Min Max -------------+--------------------------------------------------------- CNS | 1,285 .0006369 .6455761 -1.837005 2.953353 . sum IM_Offsetting if sample == 1 Variable | Obs Mean Std. dev. Min Max -------------+--------------------------------------------------------- IM_Offsett~g | 1,285 .292607 .6375941 0 4
CEO_Celeb3 is a binary variable indicating the celebrity status of a CEO. 1 = CEO is considered to be a celebrity and 0 otherwise.
CNS is a CEO narcissism indicator and my dependent variable is the number of positive tone press releases (PR) around a specific firm event. The variable CNS is standardized.
From my interpretation, it appears that the influence of the CEO narcissism tendency on the number of issued PR is stronger for celebrity CEOs.
When it comes to interpreting the effect size I would go with: Ceteris paribus, increasing CNS by one SD (0.6455761) is associated with an 0.928 SD increase in published press releases when the CEO is a celebrity. Given that the SD of my y variable is 0.637 the effect size would be calculated as 0.928*0.637 = 0.60. In other words, increasing CNS by one SD is associated with an ~ 0.60 increase in published press releases when the CEO is a celebrity.
I am well aware of the fact that such interpretations are highly debatable in the sense of their meaningfulness but would appreciate it if someone could clarify whether the interpretation is correct in the first place.
I am struggling to confirm the effect size using margins:
Code:
margins, at(CNS = 0.0006369 CEO_celeb3 = 1) atmeans noatlegend // Effect of Interaction term if CNS takes on its mean value and the CEO is a celebrity Adjusted predictions Number of obs = 1,285 Model VCE: Robust Expression: Predicted number of events, predict() ------------------------------------------------------------------------------ | Delta-method | Margin std. err. z P>|z| [95% conf. interval] -------------+---------------------------------------------------------------- _cons | .2020967 .0462454 4.37 0.000 .1114573 .2927362 ------------------------------------------------------------------------------ margins, at(CNS = 0.646213 CEO_celeb3 = 1) atmeans noatlegend // Effect of Interaction term if CNS takes on its mean value + 1 SD and the CEO is a celebrity Adjusted predictions Number of obs = 1,285 Model VCE: Robust Expression: Predicted number of events, predict() ------------------------------------------------------------------------------ | Delta-method | Margin std. err. z P>|z| [95% conf. interval] -------------+---------------------------------------------------------------- _cons | .3765594 .0994308 3.79 0.000 .1816786 .5714403 ------------------------------------------------------------------------------
I am wondering what contributes to the different results. My guess would be that these two results aren't really comparable due to different values of CNS in the regression analysis. That is, CNS might not even take on it's mean value of 0.0006369 for the regression coefficients.
I am happy about any comments on my problem.
Comment