Thank you for your answer. I forgot to include my standardization code here. Actually, the dataset currently used, named fish2, is the result after standardization. The standardization code: /*Standardize all variables in the dataset named fish1*/
proc stdize data=fish1 out=fish2;
var Length1 Length2 Length3;
run;
... View more