I am currently running exactly the same model now. You can add the unequalslopes at the end of the model statement. This is an example: proc logistic data=dent;
class center baseline trt / param=ref order=data;
model resp(descending) = center baseline trt / unequalslopes; You have to add the test statements though as like below: proc logistic data=dent;
class center baseline trt / param=ref order=data;
model resp(descending)=center baseline trt / unequalslopes=trt;
TRT_RESP4:test trtacl_4,trttl_4,trtach_4,trtth_4;
TRT_RESP3:test trtacl_3,trttl_3,trtach_3,trtth_3;
TRT_RESP2:test trtacl_2,trttl_2,trtach_2,trtth_2;
TRT_RESP1:test trtacl_1,trttl_1,trtach_1,trtth_1; run; Please read the SAS documentation: http://support.sas.com/kb/22/954.html I found really helpful. It gives us step-by-step, easy explanations for the assumption test. Good luck.
... View more