options ls=78; title "Bartlett's Test - Swiss Bank Notes"; data swiss; infile "D:\Statistics\STAT 505\data\swiss3.csv" firstobs=2 delimiter=','; input type $ length left right bottom top diag; run; /* The discrim procedure is called with the pool=test * option to produce Bartlett's test for equal * covariance matrices. The remaining parts of the * output are not used. * The class statement defines the grouping variable, * which is the type of note, and all response * variables are specified in the var statement. */ proc discrim pool=test; class type; var length left right bottom top diag; run;