Dear SAS community,
Since the lsmeans/ilink option is not supported in proc logistic when the predictor var is continuous, I tried the following estimates:
My outcome var is ordinal (1,2,3,4,5,6,7,8,9) and my predictor DM continuous. I would like to know the predicted prob for hedonic=5 and 6 at DM=22.8.
proc logistic data=one desc; model hedonic= DM/link=clogit; estimate "Pr prob hedonic=5 at DM=22.8" intercept 1 DM 22.8/ilink category='5'; estimate "Pr prob hedonic=6 at DM=22.8" intercept 1 DM 22.8/ilink category='6'; run;
I would greatly appreciate if you could let me know if this looks ok to you.
Thanks a lot!
... View more