1

我想将我的 SAS 回归结果输出到 excel 中。
代码是:

proc import datafile = 'cmds.csv'
out = Work.cmds
dbms = CSV;
run; 

ODS TAGSETS.EXCELXP 
file="dt.xls";
STYLE = STATISTICAL;

proc sort data=Work.Cmds out=Work.Cmds;
by year;
run;

proc reg data=Work.Cmds outest=want tableout;
by year;
model Investment = Size Growth_New Leverage complex Deficit pc_income_NEW Density/hcc adjrsq ;
ods output parameterestimates=want2;
run;

ODS TAGSETS.EXCELXP CLOSE;

尽管它成功生成了 excel 文件,但它包含许多工作表。我想在一张纸上生成所有东西。我能怎么做?

4

1 回答 1

3

标签集中有一些选项,特别是sheet_interval. 要全部转到一页,请将工作表间隔选项设置为无。

ODS TAGSETS.EXCELXP file="dt.xls" STYLE = STATISTICAL options (sheet_interval='none');

但是,TAGSETS.EXCELXP 会生成 XML 文件,而不是 Excel 文件。如果您有 SAS 9.4 TS1M4+,那么我会推荐 ODS EXCEL。

ods excel file="dt.xlsx" style=statistical options (sheet_interval = 'none');

ODS TAGSETS.EXCELXP 的所有选项列表在这里: https: //support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html

将生成单个选项卡的完整示例:

ods tagsets.excelxp file='C:\_localdata\demo.xls' options(sheet_interval='none');
proc sort data=sashelp.cars out=cars;
by origin;
run;

proc reg data=cars outest=demo tableout;
by origin;
model mpg_city = mpg_highway invoice cylinders;
ods output parameterEstimates=want;
run;

ods tagsets.excelxp close;
于 2018-10-18T15:04:29.567 回答