ods graphics on; proc logistic data=change desc plots(only)=roc; class actual; units age=10; model test(event="Yes")= actual age/outroc=x scale=none clparm=wald clodds=pl rsquare; run; quit; ods graphics off; /*I have written this code, is it a correct approach?*/
... View more