포스팅 목차
* 참고 : 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
'SAS' 카테고리의 다른 글
Firth logistic regression (SAS and R) (0) | 2011.02.18 |
---|---|
[이중배열] 이중배열을 이용한 관측치별 누적합 구... (0) | 2011.02.18 |
[GRADAR] GARADAR 넓이(비율) 조정 (0) | 2011.02.18 |
데이터 중복제거(first. / last대안) - MAX , MIN (0) | 2011.02.15 |
[오라클] 오라클 날짜를 SAS날짜로 변경(oracle,d... (0) | 2011.01.04 |
댓글