Quiz:
Setting
Up Your SAS Session
Select the best answer for each question and click Score My Quiz.
- If you submit the following program,
how does the output look?
options pagesize=55 nonumber;
proc tabulate data=clinic.admit;
class actlevel;
var age height weight;
table actlevel,(age height weight)*mean;
run;
options linesize=80;
proc means data=clinic.heart min max maxdec=1;
var arterial heart cardiac urinary;
class survive sex;
run;
- How can you create SAS output
in HTML format?
- For the date values 05May1955
and 04Mar2046 to be read correctly using the DATE9. informat
(ddmmmyyyy), what value must the YEARCUTOFF= option have?
- When you specify an engine for
a library, you are specifying
- What types of data can you access
using the LIBNAME statement?
- The following PROC PRINT output
was created immediately after PROC TABULATE output. Which system options
were specified when the report was created?
1
10:03
Friday, March 19, 1999
Obs |
ID |
Height |
Weight |
Act
Level |
Fee |
|
|
|
|
|
|
1 |
2458 |
72 |
168 |
HIGH |
85.20 |
2 |
2462 |
66 |
152 |
HIGH |
124.80 |
3 |
2501 |
61 |
123 |
LOW |
149.75 |
4 |
2523 |
63 |
137 |
MOD |
149.75 |
5 |
2539 |
71 |
158 |
LOW |
124.80 |
6 |
2544 |
76 |
193 |
HIGH |
124.80 |
7 |
2552 |
67 |
151 |
MOD |
149.75 |
8 |
2555 |
70 |
173 |
MOD |
149.75 |
9 |
2563 |
73 |
154 |
LOW |
124.80 |
|
- Which of the following programs
correctly references a SAS data set named SalesAnalysis
stored in a permanent SAS library?
- When reading the dates 05/22/55,
03/04/46, and 12/12/03, how would SAS software
interpret them if the YEARCUTOFF= value were 1950?
- What's the difference between
using the LIBNAME statement and using the Explorer window when defining
a library?
- What does the following statement
do?
libname osiris spss 'c:\myfiles\sasdata\data';
|