d*****6 发帖数: 100 | 1 91. The following SAS program is submitted:
proc report data = work.houses nowd;
column style price;
where price < 100000;
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.
Assume permanent variable labels have been assigned.
Which one of the following completes the program and produces the output
displayed in the exhibit?
A. define style / display width = 9;
define price / sum format = comma9. width = 10;
B. define style / width = |
d*****6 发帖数: 100 | 2 92. The following SAS program is submitted:
proc report data = sasuser.houses nowd headline headskip;
column style price;
where price < 100000;
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.
Assuming that the PRICE variable is numeric, which one of the following
completes the program and produces the output displayed in
the exhibit?
A. define style / group 'Style';
define price / mean 'Price' format = dollar9.;
B. define style / display 'Sty |
d*****6 发帖数: 100 | 3 92. The following SAS program is submitted:
proc report data = sasuser.houses nowd headline headskip;
column style price;
where price < 100000;
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.
Assuming that the PRICE variable is numeric, which one of the following
completes the program and produces the output displayed in
the exhibit?
A. define style / group 'Style';
define price / mean 'Price' format = dollar9.;
B. define style / display 'Sty |