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;
Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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
  • 799 views
  • 0 likes
  • 2 in conversation