我已经使用ODS输出到频率表的PDf,尽管使用了noptitle它仍然在顶部打印SAS System。
代码是
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系统”,如何删除这个标题?
答案 0 :(得分:3)
只需使用空标题语句,即删除所有手动或自动分配的标题(简单但有效):
options nodate center nonumber ;
ods noptitle ;
ods pdf file="Z:\temp.pdf" ;
ods proclabel="The totals";
title;/*<-reset all titles or overwrite it with wanted title*/
proc freq data=compulsion;
tables year;
label year="year of the child";
;run;
ods pdf close;
编辑以澄清:noptitle仅删除proc生成的标题,例如&#34; FREQ Procedure&#34;。 &#34; Sas系统&#34;是一个与proc无关的标题