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报告步骤获得相同的输出?
答案 0 :(得分: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的重点是您可以使用的所有其他功能,格式选项,摘要选项等。