BookmarkSubscribeRSS Feed
abl37
Fluorite | Level 6

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;

3 REPLIES 3
Ksharp
Super User
You can use the following
https://support.sas.com/kb/37/109.html
to Obtaining subject-specific parameter estimates and get its predicted value and its residual.
JackieJ_SAS
SAS Employee
Hi,
PROC MIXED on ODA has the same functionality as the desktop version, including use of the OUTPM option. Please provide us your log and full MIXED output. That will help to diagnose the issue.
abl37
Fluorite | Level 6
Hi! I figured it out. I have the OUTPM option in the wrong line in my code. Thanks!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is ANOVA?

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.

Discussion stats
  • 3 replies
  • 900 views
  • 1 like
  • 3 in conversation