BookmarkSubscribeRSS Feed

[SAS 프로그래밍 고수 백승민] [ODS] 페이지 나누기 옵션(STARTPAE)

Started ‎06-11-2020 by
Modified ‎06-11-2020 by
Views 141

* 참고 : http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002217095.htm#a003064891
         http://support.sas.com/techsup/technote/ts659/ts659.html

 

NEVER : 페이지 나누기 적용 안함. 그래픽 프로시져는 보통 하나의 페이지를 사용하지만,
        NEVER옵션 적용시 한페이지에 overprint(덧인쇄)가 된다.

NO : 각 프로시져의 시작시 페이지 나누기를 안함. 단지 페이지가 채워지거나, Startpage=NOW 지정할 경우 새 페이지 시작.

NOW : NOW옵션 적용시 바로 페이지 나누기 적용.

YES : 각 프로시져가 시작할 경우 페이지 나누기가 적용됨.


   * ODS pdf file='c:\test.pdf' startpage=no;
   ODS pdf file='c:\test.pdf' startpage=NEVER;
   * ods pdf file="&sysver..pdf" notoc startpage=no;
   goptions device=gif horigin=0 in vorigin=5 in hsize=4 in vsize=4 in;

   proc print data=sashelp.class;
   quit;

   proc gchart data=sashelp.class;
      format height 3.0;
      vbar3d height;
   run;
   quit;

   goptions horigin=4 in vorigin=5 in;

   proc gchart data=sashelp.class;
      format weight 3.0;
      vbar3d weight;
   run;
   quit;

   proc print data=sashelp.class;
   quit;

   ODS pdf close;

Version history
Last update:
‎06-11-2020 04:19 AM
Updated by:
Contributors

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Article Labels
Article Tags