I am running an ordinal logisic regression analysis where the outcome/idependent variable (Q169_2re) has three levels (1=little exposure, 2=moderate, 3=extreme). I am using the following code and I am unable to get odds ratio estmates for each level. I tried a contrast statement but it didn't work (I thought those were only for levels of depenent variables, but I could be wrong). Can someone point me in the right direction? proc SURVEYLOGISTIC data=HRBM order=formatted; weight weight1; class Q169_2re (ref="1 little exposure") risk(ref="no risk")/PARAM=ordinal; model Q169_2re=risk/CLODDS; run;
... View more