Hello,
I am trying to interpret the results of my predictive margins between the interaction of two binary variables: treatment and subsidy. My goal is to examine the effects on the dependent variable when both variables are present or absent, and when each is present/absent and the other one is not.
Question 1: If I understood the command correctly, the predicted margins should give me the predicted value of the dependent variable (dv2), when treatment is 1 and subsidy is 1, when treatment is 0 and subsidy is 0, and so on. Is this interpretation correct?
Question 2: How can I interpret the results of the predicted margins I got, considering that in the logit model treatment is not significant and subsidy is? And why are the pvalues all significant?
Thank you very much!
I am trying to interpret the results of my predictive margins between the interaction of two binary variables: treatment and subsidy. My goal is to examine the effects on the dependent variable when both variables are present or absent, and when each is present/absent and the other one is not.
Question 1: If I understood the command correctly, the predicted margins should give me the predicted value of the dependent variable (dv2), when treatment is 1 and subsidy is 1, when treatment is 0 and subsidy is 0, and so on. Is this interpretation correct?
Question 2: How can I interpret the results of the predicted margins I got, considering that in the logit model treatment is not significant and subsidy is? And why are the pvalues all significant?
Thank you very much!
Code:
. logit dv2 i.treatment##i.subsidy age male i.country_co i.identity, r
Iteration 0: Log pseudolikelihood = -1462.3576
Iteration 1: Log pseudolikelihood = -1404.8565
Iteration 2: Log pseudolikelihood = -1404.5085
Iteration 3: Log pseudolikelihood = -1404.5084
Logistic regression Number of obs = 2,204
Wald chi2(10) = 107.09
Prob > chi2 = 0.0000
Log pseudolikelihood = -1404.5084 Pseudo R2 = 0.0396
-------------------------------------------------------------------------------------
| Robust
dv2 | Coefficient std. err. z P>|z| [95% conf. interval]
--------------------+----------------------------------------------------------------
1.treatment | -.1163288 .4771637 -0.24 0.807 -1.051552 .8188949
1.subsidy | -.2296406 .0945648 -2.43 0.015 -.4149842 -.0442969
|
treatment#subsidy |
1 1 | -.2295296 .5884806 -0.39 0.697 -1.38293 .9238711
|
age | .0103576 .0029747 3.48 0.000 .0045273 .0161878
male | .0621989 .0906214 0.69 0.492 -.1154158 .2398136
|
country_co |
2 | .2326212 .2389167 0.97 0.330 -.235647 .7008894
3 | .0429415 .27989 0.15 0.878 -.5056328 .5915158
|
identity |
2 | .0954899 .2697841 0.35 0.723 -.4332773 .6242571
3 | .954601 .305423 3.13 0.002 .3559829 1.553219
4 | -.3116946 .2088277 -1.49 0.136 -.7209894 .0976002
|
_cons | -20.21188 5.871116 -3.44 0.001 -31.71905 -8.704701
-------------------------------------------------------------------------------------
Code:
. margins i.subsidy#i.treatment
Predictive margins Number of obs = 2,204
Model VCE: Robust
Expression: Pr(dv2), predict()
-------------------------------------------------------------------------------------
| Delta-method
| Margin std. err. z P>|z| [95% conf. interval]
--------------------+----------------------------------------------------------------
subsidy#treatment |
0 0 | .6486665 .0146136 44.39 0.000 .6200243 .6773086
0 1 | .6230715 .1049369 5.94 0.000 .417399 .828744
1 0 | .5975045 .0146136 40.89 0.000 .5688624 .6261467
1 1 | .5169178 .0892162 5.79 0.000 .3420572 .6917784
-------------------------------------------------------------------------------------

Comment