* 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.