BookmarkSubscribeRSS Feed
Ana2017
Fluorite | Level 6

I am working with repeated measurements analysis (several measurements over the same experimental unit).

 

%MACRO MIX(HOY, SIGMA);
PROC MIXED DATA=UREA;
CLASS Tratamiento Animal Tiempo Cov;
MODEL UREA= Tratamiento Tratamiento*Tiempo Cov |Tiempo /DDFM=KR;
ODS OUTPUT "FitStatistics" OUT=&HOY(RENAME=(VALUE=V_&HOY));
REPEATED Tiempo/TYPE=&SIGMA SUBJECT=Animal;
RUN;
%MEND MIX;

 

 

I run the model without errors and I get results but I have several Warnings!!! See below:

 

WARNING: Output 'OUT' 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.
WARNING: Output ''Fit'' 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.
 
I cannot overcome this. 
Can someone give a hand with this? Thanks in advance. 
1 REPLY 1
ChrisBrooks
Ammonite | Level 13

Hi @Ana2017  - it looks like there is an issue with the value of the macro variable &HOY. Could you tell us the value of this variable when the macro is called?

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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