尽管使用了 noptitle,但我还是使用了 ODS 输出到频率表的 PDf,它仍然在顶部打印 SAS 系统。
代码是
options nodate center nonumber ;
ods noptitle ;
ods pdf file="Z:\temp.pdf" ;
ods proclabel="The totals";
proc freq data=compulsion;
tables year;
label year="year of the child";
;run;
ods pdf close;
但我仍然得到主标题为“SAS系统”,如何删除这个标题?