Hi!
I want to test the normality of data within a group rather than comparing groups-what is difference in class and by statements.
Can we use where statement to test normality within one group?
proc univariate data= mon6 normaltest;
var cohesion;
histogram / normal;
qqplot cohesion/normal(mu=est sigma =est) square;
class condition;
run;