ok so i wrote this code. Is this correct because i don't see much difference with the normality check for burnout and the normality check for the residuals for burnout? : proc mixed data= ewcsrotatie noclprint noitprint covtest; class countid; model burnout= ondergekwa overgekwa man leeftijd loon stopstudeer nonprofit privaat combo ondergekwa*stopstudeer overgekwa*stopstudeer /solution residual outpm=resburn ; random intercept / solution sub=countid; run; greetings stefnix proc univariate data= resburn normal plot; var burnout; histogram burnout/ NORMAL (MU=EST SIGMA=EST); qqplot burnout / NORMAL (MU=EST SIGMA=EST); run;
... View more