Hi,
I have a problem with SAS code in Proc glm!
I want to test my residual normality but QQplot for all my response ariables are the same with the same mean and standard deviation, my main problem is with Proc univariate!
I will send you my code.
I would be thankful if you tell me what should I do with the code!
Regards,
proc glm; class Sex Type ; model Staplelength=Sex Type /solution;
OUTPUT OUT=diagnost p=Ybar r=resid;
run;
PROC pLOT data=diagnost;
PLOT resid*ybar/vref=0;
run;
PROC UNIVARIATE ;
Histogram resid/ normal;
QQPLOT resid/normal; run;
... View more