@chemicalab Can you please help me with the code on how we can get the classification table for validation data. Below is my code. proc logistic data=training outmodel=newsModel; class sex; model subs=sex age / link=glogit ctable outroc=d; score data=training out=Score2; run; proc logistic noprint inmodel=newsModel; score data=validation out=ScoredTest; proc print data=ScoredTest label noobs;
... View more