Using logistic regression, I am attempting to model the marginal effect of being female and earning below the poverty threshold (both binary variables) on predicting probability of developing hypertension. I created an interaction term (poverty_FEMALE) to attempt to model this, but am unsure if my interpretation of the coefficients is correct.
Is it correct to say that the:
- marginal effect of being below the threshold and male is: .067 - .055
- the marginal effect of being female and not in poverty is: .041 - .055
- the marginal effect of being female and in poverty is -.055?
If so, why would it make sense that those in poverty and female are at lower risk, when the coefficients of those two variables on their own our positive values?
pov_FEMALE=(df$BELOW_100_POVERTY*(df$FEMALE))
Marginal Effects:
dF/dx Std. Err. z P>|z|
BELOW_100_POVERTY 0.0670417 0.0243266 2.7559 0.0058531 **
FEMALE 0.0410705 0.0172280 2.3839 0.0171283 *
pov_FEMALE -0.0553485 0.0160284 -3.4531 0.0005541 ***