I am trying to get this output to run for a Chi Square, here is my Code: ODS Trace on; Proc Freq Data=hypanl.hypanalysis2; Tables hypreldeathInd * StateCd / Nopercent norow nocum chisq; Run; ODS Trace Off; ODS OUTPUT CrossTabFreqs=HRslt.Percents (KEEP = Cd DeathInd Frequency ColPercent WHERE = (DeathInd = 1 AND MISSING (Cd)=0)); ODS OUTPUT Chisq=HRslt.ChiSqResults (DROP=TABLE WHERE= (Statistic= 'Chi Square')); PROC PRINT DATA=H.Percents; RUN; PROC PRINT DATA=H.ChiSqResults; RUN; I am getting this Error in the log: ERROR: File H.ChiSq.DATA does not exist. 91 RUN; And these Warnings: WARNING: Output 'Chisq' 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 'CrossTabFreqs' 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 suggestions on whats happening, particularly with the Error...
... View more