gpt4 book ai didi

pdf - SAS:如何使用 ODS 布局在 2 个 PDF 页面上放置 8 个图形?

转载 作者:行者123 更新时间:2023-12-04 12:37:24 32 4
gpt4 key购买 nike

我正在使用 SAS ODS 创建 PDF 文档。下面的代码可以将 4 个图形放在 1 页上。但是,如果我尝试将 8 个图表放在 2 页上,我得到的只是 1 页上的 4 个图表。我尝试复制星号行之间的部分并将其再次粘贴到“ods pdf close;”上方。但这没有用。我也尝试添加“ods startpage = now;”两者之间,但这也不起作用。如何在 2 页上放置 8 个图形?

goptions reset=all;

data test;
input x y @@;
datalines;
1 2 2 4 3 8 4 10 5 15
;
run;
ods pdf file="[path]/output.pdf" ;

****
ods layout Start width=10in height=8in ;
ods region x=0 y=5% width=45% height=45%;
proc gplot data=test;
title2 'PLOT #1';
plot y*x /name="mygraph1" noframe;
run;
ods region x=55% y=5% width=45% height=45%;
title2 'PLOT #2';
plot y*x /name="mygraph2" noframe;
run;
ods region x=0 y=51% width=45% height=45%;
title2 'PLOT #3';
plot y*x / name="Mygraph3" noframe;
run;
ods region x=55% Y=51% width=45% height=45%;
title2 'PLOT #4';
plot y*x / name="Mygraph4" noframe;
run;
quit;
ods layout end;
****

ods pdf close;

代码基于 this article .

最佳答案

好问题,在我看来,这在任何地方都没有很好的记录。

你快到了:你需要关闭你的布局“容器”,强制创建一个新页面,然后为下一个页面打开一个新布局:

ods pdf file="file.pdf" startpage=never;

* page 1;
ods layout start <dimensions>;
ods region <dimensions>;
proc whatever; run;
ods region <dimensions>;
proc whatever; run;
ods layout end;

*<etc. for page 1 content>;

* start page 2;
ods pdf startpage=now;

* page 2;
ods layout start <dimensions>;
ods region <dimensions>;
proc whatever; run;
ods region <dimensions>;
proc whatever; run;
ods layout end;

*<etc. for page 2 content>;

ods pdf close;

关于pdf - SAS:如何使用 ODS 布局在 2 个 PDF 页面上放置 8 个图形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5045939/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com