Hello, I'm trying to add decimal places for the output shown for proc freq using ODS code. I am interested in the percent of row frequency. I can get the ODS code to work for overall percent but not for the percent of row frequency. I've tried to include row_pct 8.4 but I get an error code that the variable 'ROW_PCT not found in data set WORK.INDTABLE.' ods trace on; proc freq data=county; table gender*abuse / chisq expected; format gender gender. abuse abuse.; ods output CrossTabFreqs=IndTable; run; proc print data=IndTable label; format percent 8.4 row_pct 8.4; run; Any advice is greatly appreciated, thanks.
... View more