0
ods html file = "Y:/cars/cars.xls";

proc sql;
title "Cars";
select
make,model,type,origin,drivetrain
from sashelp.class
where engine size gt 3;
quit;

假设在 SAS 中运行上述查询后,我将得到 excel 格式的输出。那么,如何通过 proc 报告步骤获得相同的输出?

4

1 回答 1

0

由于 sashelp.class 中没有任何汽车,因此您不会从中获得太多输出。

基本的 proc 报告步骤如下所示:

title "Cars";
proc report data=sashelp.cars nowd;
where enginesize gt 3;
columns make model type origin drivetrain;
run;

我不会使用 PROC REPORT 只是为了做到这一点 - PROC REPORT 的重点是您可以使用的所有其他功能,在格式化选项、摘要选项等之间。

于 2012-09-04T14:22:26.807 回答