I need to create a two-way table without row and column total.
here is the code:
proc freq data = freq_table1 ;
table c * x / norow nocol nopercent ;
title "x";
run;
the output is:
I actually want:
Also, does anyone have an idea how to re-order the frequency table from 0-1 to 1-0?
Thank you very much! JH