options ls=85 ps=65;

title1 'SAS DISCRIM example 1';

 

data salmon;

 infile 'D:\T11-2.dat';

 input species gender fresh marine;

run;

 

proc print data=salmon;

run;

 

proc discrim data=salmon method=normal pool=test

             wcov pcov manova;

 class species;

 var fresh marine;

 title2 'Testing the equality of normal population parameters';

run;