* Discrim Example -- source code file discrim.sas; options linesize=70 nodate; data discrim; infile "c:/datasets/discrim.txt" firstobs=6; input hire educ exp gender; proc print; proc logistic; model hire (event='1') = educ exp gender; output out=out p=predict lower=lower upper=upper; proc print data=out; run; quit;