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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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