D******n 发帖数: 2836 | 1 lets say i did sth like this
ods output OneWayFreqs = tab;
proc freq;tables xxx;by yyy;run;
ods output close;
the resultant table 'tab' is a messed up, Can I tweak this to output all
the tables by yyy separately? | A*******s 发帖数: 3942 | 2 use the path of ods output tables
【在 D******n 的大作中提到】 : lets say i did sth like this : ods output OneWayFreqs = tab; : proc freq;tables xxx;by yyy;run; : ods output close; : the resultant table 'tab' is a messed up, Can I tweak this to output all : the tables by yyy separately?
| D******n 发帖数: 2836 | 3 problem solved, i used the out statement in proc freq, thats even better.
thanks all the same. |
|