SAS_Institute
A00-280 · Question #23
This question will ask you to provide a line of missing code. The following SAS program is submitted: proc freq data=dist; class code bzcr; run; to create the following output: The FREQ Procedure…
The correct answer is A. TABLES site*group /nocol. See the full explanation below for the reasoning.
Question
This question will ask you to provide a line of missing code. The following SAS program is submitted:
proc freq data=dist;
class code bzcr;
run;
to create the following output:
The FREQ Procedure
Table of site by group
site group
Frequency|
Percent |
Row Pct |Trt1 |Trt2 |Trt3 | Total
Col Pct |
--------+-----+-----+-----+------
SITEA | 15 | 50 | 172 | 243
| 2.80 | 10.47 | 32.15 | 45.42
| 6.17 | 23.05 | 70.78 |
--------+-----+-----+-----+------
SITEB | 24 | 74 | 194 | 292
| 4.49 | 13.83 | 36.26 | 54.58
| 8.22 | 25.34 | 66.44 |
--------+-----+-----+-----+------
Total | 39 | 124 | 366 | 535
| 7.29 | 23.18 | 68.41 | 100.00
Which statement is required to produce this output?
Options
- ATABLES site*group /nocol;
- BTABLES site*group /norow;
- CTABLES site*group;
- DTABLES site*group /nocol norow;
How the community answered
(55 responses)- A78% (43)
- B2% (1)
- C5% (3)
- D15% (8)
Community Discussion
No community discussion yet for this question.