Quiz:
Creating Tabular Reports
Select the best answer for each question and click Score My Quiz.
-
Which program creates the following
table?
|
ActLevel |
All
Levels |
HIGH |
LOW
|
MOD
|
Fee |
Sum |
844.30 |
844.30 |
998.35 |
2686.95 |
-
Which TABLE statement correctly
requests statistics to show average sales?
-
Which table does the following
program create?
proc tabulate data=clinic.heart format=6.;
class sex survive;
var arterial cardiac;
table sex survive all,arterial*max cardiac*min;
run;
-
If the error message Variable
VARIABLE in list does not match type prescribed for this list
occurs, what has happened?
-
What type of table does this TABLE
statement create?
table dest*n orig*n boarded*pctsum transferred*pctsum deplaned revenue;
-
How many dimensions does the table
below contain?
Year
2000 |
|
AerClass |
WalkJogRun |
Swim |
Min |
61.00 |
118.00 |
22.00 |
Max |
81.00 |
136.00 |
44.00 |
Mean |
71.00 |
127.00 |
33.00 |
|
-
Which PROC TABULATE step below
is correctly specified?
-
Why is the following PROC TABULATE
step incorrect, given that
Survive and Shock
are character variables?
proc tabulate data=clinic.heart;
var survive shock;
table survive shock,sum pctsum;
run;
-
What happens when you submit the
program below?
proc tabulate data=clinic.admit;
class actlevel sex;
table actlevel,sex;
where actlevel='HIGH';
run;
-
What statistic is calculated
in the PROC TABULATE step below?
proc tabulate data=clinic.heart;
class survive;
var cardiac urinary;
table survive,cardiac urinary;
run;
|