Hello!
I wanted to display my Odds Ratio estimates/ Wale Confidence Limits in descending order. Currently my plots look scattered like this with the following code:
proc logistic data=libraryname.test plots=(oddsratio) ;
class race (ref="1") /param=ref;
model outcomevar (event="Yes") =race;
run;

I want the plots to display in order like this:

I am not sure if it's possible but if it is, what statement I should use and where? I thought there would be something for the model or plot statements but nothing I've tried has worked.