Hello,
I am currently using SAS academic OnDemand. Using the desktop version of SAS, I have had no issues with using the following code for creating a new datset to explore residuals from an ANOVA repeated measures model using PROC MIXED. However, with SAS OnDemand, it looks like the OUTPM option is not valid. Any thoughts on how I can obtain residuals to identify outliers and remove them from my analysis, using SAS OnDemand?? Thanks in advance!
proc mixed data=PreBW plots=studentpanel;
class id trt wk ;
model bw=covbw trt wk trt*wk /ddfm=kenwardroger outpm=resm vciry residual;
repeated wk / subject=id(trt) type=csh;
run;
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.