Quiz:
Computing
Statistics for Numeric Variables
Select the best answer for each question and click Score My Quiz.
-
Which of the following statements
is true?
-
The default statistics produced
by the MEANS procedure are are n-count, mean,
minimum, maximum, and...
-
Which PROC MEANS statement option
will produce output with one decimal place?
-
Which statement will limit analysis
to the variables
Boarded , Transfer , and
Deplane ?
-
The data set Survey.Health
includes the following variables. Which one would you want to exclude
from analysis?
-
Which statement is true about using
a CLASS statement to group your data?
-
The data set Survey.Health
includes the following variables. Which one is the best choice for
categorizing the analysis?
-
Which of the following statements
is true regarding BY group processing?
-
Complete the program shown below
by selecting the missing option.
proc sort data=parts.widgets ... ;
by region;
run;
proc means data=work.widgsort;
by region;
run;
-
Which group processing statement
produced the PROC MEANS output shown below?
Survive |
Sex |
N Obs |
Variable |
N |
Mean |
Std Dev |
Minimum |
Maximum |
DIED |
1 |
4 |
Arterial
Heart
Cardiac
Urinary |
4
4
4
4 |
92.5
111.0
176.8
98.0 |
10.5
53.4
75.2
186.1 |
83.0
54.0
95.0
0.0 |
103.0
183.0
260.0
377.0 |
|
2 |
6 |
Arterial
Heart
Cardiac
Urinary |
6
6
6
6 |
94.2
103.7
318.3
100.3 |
27.3
16.7
102.6
155.7 |
72.0
81.0
156.0
0.0 |
145.0
130.0
424.0
405.0 |
SURV |
1 |
5 |
Arterial
Heart
Cardiac
Urinary |
5
5
5
5 |
77.2
109.0
298.0
100.8 |
12.2
32.0
139.8
60.2 |
61.0
77.0
66.0
44.0 |
88.0
149.0
410.0
200.0 |
|
2 |
5 |
Arterial
Heart
Cardiac
Urinary |
5
5
5
5 |
78.8
100.0
330.2
111.2 |
6.8
13.4
87.0
152.4 |
72.0
84.0
256.0
12.0 |
87.0
111.0
471.0
377.0 |
|