ods output to dataset while suppressing printing

ods exclude all;
proc freq data=temp_ds_01;
tables &grp*&ctg;
ods output crosstabfreqs=temp_ds_02;
run;
ods exclude none;

posted @ 2023-08-29 13:24  helloyuen  阅读(7)  评论(0编辑  收藏  举报