1

我试图在我的 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; 

具体来说,我试图隐藏的标题是:

性别=F

性别=M

4

1 回答 1

3

查看 BYLINE/NOBYLINE 选项。

options nobyline;

这是文档参考 http://support.sas.com/documentation/cdl/en/lesysoptsref/69799/HTML/default/viewer.htm#n1hr2wb7h5g6twn1gtt5r4zjsg39.htm

于 2017-01-11T21:44:43.683 回答