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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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