BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mikemangini
Obsidian | Level 7

I am using the proc glimmix procedure with ODS OUTPUT statement. I am puzzled by the error I received when trying to output estimates for random effects. Has anyone encountered this issue?

PROC GLIMMIX DATA=BSHP /*NOCLPRINT*/ MAXLMMUPDATE=100;

CLASS H_S_ID AGE_GRP PRIOR_CSECTION ADMIT_WEEKDAY RACE_DESC &comorbidities.;

ODS OUTPUT SOLUTIONR=R;

MODEL COMPOSITE_COMPLICATION(event="1") = AGE_GRP PRIOR_CSECTION ADMIT_WEEKDAY RACE_DESC &comorbidities./D=B LINK=LOGIT SOLUTION;

RANDOM INTERCEPT/SUBJECT=H_S_ID;

RANDOM _RESIDUAL_;

OUTPUT OUT=PRED_1

    PRED(BLUP ILINK)=PREDPROB PRED(NOBLUP ILINK)=EXPPROB;

NLOPTIONS TECH=NRRIDG;

run;

WARNING: Output 'SOLUTIONR' was not created.  Make sure that the output object name, label, or

         path is spelled correctly.  Also, verify that the appropriate procedure options are

         used to produce the requested output object.  For example, verify that the NOPRINT

         option is not used.

Best,

Mike

1 ACCEPTED SOLUTION

Accepted Solutions
lvm
Rhodochrosite | Level 12 lvm
Rhodochrosite | Level 12

You can only get the EBLUPs with the ods output file if you specify S as an option on the random statement. Just put S after the /.

View solution in original post

1 REPLY 1
lvm
Rhodochrosite | Level 12 lvm
Rhodochrosite | Level 12

You can only get the EBLUPs with the ods output file if you specify S as an option on the random statement. Just put S after the /.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 1 reply
  • 2098 views
  • 0 likes
  • 2 in conversation