Hi,
I'm doing a log reg using a interaction term for gender and education. I want to get the OR for e.g. women with low education. Do I need to multiple the ORs with each other (e.g. for women with low education, 1.59 x 1.46 x 0.81), or can I use some kind of command to subtract the specific ORs for a specific gender + education-level?
Grateful for any help!
I'm doing a log reg using a interaction term for gender and education. I want to get the OR for e.g. women with low education. Do I need to multiple the ORs with each other (e.g. for women with low education, 1.59 x 1.46 x 0.81), or can I use some kind of command to subtract the specific ORs for a specific gender + education-level?
Code:
logistic hyphens gender##education age i.vad i.inotropes bmi i.smoking i.cmv i.init_stat i.lvad i.mi
Logistic regression Number of obs = 24,979
LR chi2(67) = 4481.60
Prob > chi2 = 0.0000
Log likelihood = -20007.416 Pseudo R2 = 0.1007
hyptens Odds ratio Std. err. z P>z [95% conf. interval]
1.gender 1.592065 .0920858 16.77 0.000 1.919146 2.280564
education
Low 1.457316 .070604 16.26 0.000 1.342967 1.999986
High .6490592 .0429516 -5.04 0.000 .5569423 .8381556
gender#education
1#Low .8120516 .0543957 -3.12 0.002 .7111679 .9250097
1#High .9656718 .1030279 -0.51 0.608 .7638208 1.170759

Comment