본문 바로가기
SAS

[ODS] 페이지 나누기 옵션(STARTPAE)

by 기서무나구물 2011. 1. 19.

포스팅 목차

    Programming Category (English)728x90

     

    * 참고 : 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;

     

     

     

     

    * 통계분석연구회 : http://cafe.daum.net/statsas

    * 백승민홈페이지 : http://www.statwith.pe.kr


     



    백승민님의 파란블로그에서 발행된 글입니다.


    반응형

    댓글