BookmarkSubscribeRSS Feed
CynicalFire
Fluorite | Level 6
* MRM for RC method;
PROC MIXED data=bmi METHOD=ML COVTEST;
CLASS studyid;
MODEL ChildhoodBMIz = age/SOLUTION;
RANDOM INTERCEPT age/SUB=studyid TYPE=un G S cl;
ODS LISTING EXCLUDE SOLUTIONR; ODS OUTPUT SOLUTIONR=randnew SOLUTIONF=fixednew;
RUN;

I am using SAS Studio and am trying to run a mixed-effect regression model for the RC method. Above is my current code; however, I am receiving an ERROR message. Though I am unsure why?

 

ERROR: The LISTING destination is not active; no select/exclude lists are available.

1 REPLY 1
seeff
Obsidian | Level 7

It is the following line which is throwing the error:

 

ODS LISTING EXCLUDE SOLUTIONR;

 

Are you just trying to exclude SolutionR from the output? If so, I think you want: 

ODS EXCLUDE SolutionR;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 751 views
  • 0 likes
  • 2 in conversation