Hi,
I am looking at the heterogeneous effects of an intervention (three groups - 0/1/2) on gender (female=0/1) and would need some help with interpreting the results:
I am looking at the heterogeneous effects of an intervention (three groups - 0/1/2) on gender (female=0/1) and would need some help with interpreting the results:
- My understanding is that the coefficients 1.intervention#1.time and 2.intervention#1.time are the DID coefficients for the two interventions (.7104208 and 1.464891 respectively), with their p-values indicating whether they statistically differ with the coefficient 0.intervention#1.time.
- And that the coefficient 1.intervention#1.gender#1.time (-2.308946) is the difference in effect between male and female who received the first intervention, and so the actual coefficient for 1.intervention#1.gender#1.time is actually 1.intervention#1.time + 1.intervention#1.gender#1.time (=-1.598526, computed below using lincom).
Code:
. svy: ologit righttotax i.intervention##i.female##i.time (running ologit on estimation sample) Survey: Ordered logistic regression Number of strata = 7 Number of obs = 2,340 Number of PSUs = 1,207 Population size = 7,395.2248 Design df = 1,200 F( 11, 1190) = 4.02 Prob > F = 0.0000 ------------------------------------------------------------------------------------- | Linearized righttotax | Coef. Std. Err. t P>|t| [95% Conf. Interval] --------------------+---------------------------------------------------------------- intervention | 1 | .2217146 .5188795 0.43 0.669 -.7962973 1.239727 2 | -.7342184 .3209357 -2.29 0.022 -1.363876 -.104561 | female | Female | -.5882525 .3920571 -1.50 0.134 -1.357446 .1809411 | intervention#female | 1#Female | .1602964 .8438967 0.19 0.849 -1.495381 1.815974 2#Female | .6699956 .509731 1.31 0.189 -.3300674 1.670059 | time | 2017 | .0938864 .3025162 0.31 0.756 -.4996331 .6874059 | intervention#time | 1#2017 | .7104208 .9145775 0.78 0.437 -1.083928 2.50477 2#2017 | 1.464891 .5294928 2.77 0.006 .4260561 2.503725 | female#time | Female#2017 | 2.722754 1.106064 2.46 0.014 .5527191 4.892789 | intervention#| female#time | 1#Female#2017 | -2.308946 1.837614 -1.26 0.209 -5.914239 1.296346 2#Female#2017 | -1.609661 1.350826 -1.19 0.234 -4.259905 1.040583 --------------------+---------------------------------------------------------------- /cut1 | -3.520324 .2437719 -3.998591 -3.042057 /cut2 | -2.720061 .2184403 -3.148629 -2.291494 ------------------------------------------------------------------------------------- . lincom 1.intervention#1.time+1.intervention#1.female#1.time ( 1) [righttotax]1.intervention#1.time + [righttotax]1.intervention#1.female#1.time = 0 ------------------------------------------------------------------------------ righttotax | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- (1) | -1.598526 1.586276 -1.01 0.314 -4.710708 1.513657 ------------------------------------------------------------------------------ . lincom 2.intervention#1.time+2.intervention#1.female#1.time ( 1) [righttotax]2.intervention#1.time + [righttotax]2.intervention#1.female#1.time = 0 ------------------------------------------------------------------------------ righttotax | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- (1) | -.1447704 1.238054 -0.12 0.907 -2.573762 2.284222 ------------------------------------------------------------------------------
Comment