在 ODS 输出中隐藏 'by' 组标题
Hide 'by' group titles in ODS output
我试图在我的 ODS 输出中隐藏每个组的标题。代码:
ods noproctitle;
ods html ;
proc sort data=sashelp.class out=class;
by sex;
run;
proc freq data=class;
by sex;
tables sex / list;
run;
具体来说,我要隐藏的标题是:
Sex=F
和
Sex=M
查看BYLINE/NOBYLINE选项。
options nobyline;
我试图在我的 ODS 输出中隐藏每个组的标题。代码:
ods noproctitle;
ods html ;
proc sort data=sashelp.class out=class;
by sex;
run;
proc freq data=class;
by sex;
tables sex / list;
run;
具体来说,我要隐藏的标题是:
Sex=F
和
Sex=M
查看BYLINE/NOBYLINE选项。
options nobyline;