- Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor.a.source ).
proc tabulate data=clinic.admit;
class sex;
var height weight;
table sex*(height weight),mean;
run;
- Submit the program and view the PROC TABULATE output. Then redisplay the Log and Program
Editor windows.
- Copy the following program, paste it into the Program Editor window (or issue the command
copy sashelp.oltutor.b.source ). Submit the program.
proc report data=clinic.admit;
columns id name sex age actlevel;
run;
- View the report in the REPORT window. Then select File
Close
to close the REPORT window.
- Copy the following program, paste it into the Program Editor window (or issue the command
copy sashelp.oltutor.c.source ). Submit the program.
proc datasets library=work;
modify talent3;
format birthdate mmddyy8.;
run;
quit;
- View messages about PROC DATASETS in the Log window. Then scroll
up through the SAS log and view all messages. Did each program run
successfully?
Return here and select Next.
|
|