SAS 将工作台旋转 90 度,然后输出为 pdf



目前我使用以下代码来输出pdf。

GOPTIONS device=ACTXIMG;
ods pdf file="....Daily Performance &CDate..pdf";
title 'Daily Performance';
proc tabulate data=DailyReport s=[just=c] missing;
class Area Period/order=data preloadfmt;
format Area $Areaformat. Period $Periodformat.;
var Units Uti Vari;
table (Area='' ),
      (Units={Label="Units"}*(mean=''*f=comma6.)
       Uti={Label="Uti"}*(sum=''*f=percent8.1)
       Vari={Label="Var."}*(mean=''*f=percent8.1))/box="&CDate";
run;
ods pdf close;

但在某些情况下,我在表格输出中有 20-30 列。如果我使用上面的代码,那么表格将在 PDF 中分成 2 页或更多页。

那么有没有办法让它在 pdf 中"垂直"呢?或者一种在压缩成一页时保持水平的方法?

使用选项方向更改页面方向。

option orientation=landscape;

您可以通过更改过程之间的选项来更改文档中的方向。

相关内容

  • 没有找到相关文章

最新更新