Hello every one:
am running a proc freq on a dataset, the code is as follows :
proc freq data=sashelp.class;
ods output onewayfreqs=new;
table _character_;
run;
However, the problem is that the table output is not done a good way (check Screenshot):
P.S: i have tried this code to reorganize the table but it does not work :
ods select none;
proc freq data=sashelp.class;
ods output onewayfreqs=new;
table _character_;
run;
ods select all;