Attached is the cross tab of my dependent variable DONOR and independent variable BEC. If someone is in the BEC then they seem to donate 18.67 times more than if someone is not in the BEC. I ran a logistic regression: proc logistic data=work.work; class BEC (ref='0'); model donor(event='1') = BEC; run; and came up with 18.67 odds ratio and a C statistic of .50 Then, I included 19 more variables and ran the logistic regression again. This time, the odds ratio was .426 and the c statistic was .77. Is something wrong with my model? It doesn't seem like .426 makes sense if you look at the cross tab. Thank you for any help!
... View more