Hello everyone,
I hope you're all well.
I have a question about triple interactions with two dummy variables and one continuous variable.
Here are my variables:
gender_code = 1 if the CFO is a woman and 0 if the CFO is a man
gender_CEO = 1 if the CFO is a woman and 0 a man
ASSE = continuous variable (culture)
when I do my triple interaction :
I have this result:
I therefore have a coefficient = 0.2020. If I understand correctly, the triple interaction will compare the effect of the continuous variable when CFO and CEO are women vs CFO and CEO are men. So we're comparing 1 1 with 0 0.
Here's how I concluded: As a result, when the CEO and CFO are both women, companies located in countries where assertiveness is high have higher risk management practices than when both leaders are men.
Now, if I code differently
CFOH = 1 if the CFO is a man and 0 a woman
CEOH = 1 if the CEO is a man and 0 a woman
ASSE = continuous variable (culture)
when I do my triple interaction :
I have coefficeint = 0.2020. I don't understand why I don't have the opposite sign to the previous one. This time I thought I was comparing male CFO and male CEO vs female CFO and female CEO. Why do I have exactly the same coefficient with exactly the same sign?
This result is therefore the opposite of my previous conclusion...
Last point, now if I do an interaction between female CFO and male CEO or vice versa (i.e. diversity) I have exactly the same coefficient but with the opposite sign, i.e. -0.2020. Basically, I thought I'd be comparing female CFOs and male CEOs with male CFOs and female CEOs. But that's not the case because I have the same coefficient.
Could you please explain?
Is it coherent to do triple interactions knowing that I only have 40 observations that have a female CFO and a female CEO against 6,600 other combinations (diversified and male CFO male CEO)?
Thanks in advance,
I hope you're all well.
I have a question about triple interactions with two dummy variables and one continuous variable.
Here are my variables:
gender_code = 1 if the CFO is a woman and 0 if the CFO is a man
gender_CEO = 1 if the CFO is a woman and 0 a man
ASSE = continuous variable (culture)
when I do my triple interaction :
Code:
regress JM_w_abs c.centASSE##i.gender_code##i.gender_ceo LnSIZE BM_w leverageratio_w LOSS LEGAL Outsideinvestorprotection GDPpercapitagrowth UNEMPL CORRUP i.H i.chiffres, vce(robust)
I have this result:
Code:
Linear regression Number of obs = 6,654 F(46, 6607) = 56.40 Prob > F = 0.0000 R-squared = 0.3702 Root MSE = .15688 --------------------------------------------------------------------------------------------------- | Robust JM_w_abs | Coefficient std. err. t P>|t| [95% conf. interval] ----------------------------------+---------------------------------------------------------------- centASSE | .0224221 .0067837 3.31 0.001 .0091239 .0357202 1.gender_code | .00576 .0059113 0.97 0.330 -.005828 .017348 | gender_code#c.centASSE | 1 | .0276245 .0176948 1.56 0.119 -.007063 .062312 | 1.gender_ceo | .0211316 .0121103 1.74 0.081 -.0026084 .0448716 | gender_ceo#c.centASSE | 1 | -.0307967 .0304843 -1.01 0.312 -.0905557 .0289624 | gender_code#gender_ceo | 1 1 | -.0533472 .0258814 -2.06 0.039 -.1040832 -.0026112 | gender_code#gender_ceo#c.centASSE | 1 1 | .2019513 .1090912 1.85 0.064 -.0119026 .4158053 |
I therefore have a coefficient = 0.2020. If I understand correctly, the triple interaction will compare the effect of the continuous variable when CFO and CEO are women vs CFO and CEO are men. So we're comparing 1 1 with 0 0.
Here's how I concluded: As a result, when the CEO and CFO are both women, companies located in countries where assertiveness is high have higher risk management practices than when both leaders are men.
Now, if I code differently
CFOH = 1 if the CFO is a man and 0 a woman
CEOH = 1 if the CEO is a man and 0 a woman
ASSE = continuous variable (culture)
when I do my triple interaction :
Code:
regress JM_w_abs c.centASSE##i.CFOH##i.CEOH LnSIZE BM_w leverageratio_w LOSS LEGAL Outsideinvestorprotection GDPpercapitagrowth UNEMPL CORRUP i.H i.chiffres, vce(robust)
Code:
Linear regression Number of obs = 6,654 F(46, 6607) = 56.40 Prob > F = 0.0000 R-squared = 0.3702 Root MSE = .15688 ------------------------------------------------------------------------------------------- | Robust JM_w_abs | Coefficient std. err. t P>|t| [95% conf. interval] --------------------------+---------------------------------------------------------------- centASSE | .2212012 .1032888 2.14 0.032 .0187218 .4236807 1.CFOH | .0475872 .0251744 1.89 0.059 -.0017628 .0969372 | CFOH#c.centASSE | 1 | -.2295758 .1075806 -2.13 0.033 -.4404687 -.018683 | 1.CEOH | .0322156 .0228037 1.41 0.158 -.012487 .0769182 | CEOH#c.centASSE | 1 | -.1711547 .1048299 -1.63 0.103 -.3766552 .0343458 | CFOH#CEOH | 1 1 | -.0533472 .0258814 -2.06 0.039 -.1040832 -.0026112 | CFOH#CEOH#c.centASSE | 1 1 | .2019513 .1090912 1.85 0.064 -.0119026 .4158053
This result is therefore the opposite of my previous conclusion...
Last point, now if I do an interaction between female CFO and male CEO or vice versa (i.e. diversity) I have exactly the same coefficient but with the opposite sign, i.e. -0.2020. Basically, I thought I'd be comparing female CFOs and male CEOs with male CFOs and female CEOs. But that's not the case because I have the same coefficient.
Could you please explain?
Is it coherent to do triple interactions knowing that I only have 40 observations that have a female CFO and a female CEO against 6,600 other combinations (diversified and male CFO male CEO)?
Thanks in advance,
Comment