Hi there,
I am having an issue with a PROC ANOVA ODS OUTPUT.
Here is my code.
ODS TRACE ON;
ODS OUTPUT ANOVAResults= WORK.AnovaResults;
PROC ANOVA
DATA= Hypertension.Analysis
ORDER = INTERNAL;
CLASS StateCd;
MODEL AgeAtVisit = StateCd;
RUN;
QUIT;
ODS TRACE OFF;
and here is the log I am getting...
WARNING: Output 'ANOVAResults' 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.
Any idea why I am not able to create "ANOVA Results"