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 报告步骤获得相同的输出?
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 报告步骤获得相同的输出?