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.