-
Copy the program below and paste it into the Program Editor window (or issue the command
copy sashelp.oltutor..source ). proc tabulate data=clinic.admit;
class actlevel;
var age;
table actlevel,age*mean;
run;
-
Modify the TABLE statement to produce a row that summarizes all values of
ActLevel .
-
Add a WHERE statement to select only observations for female patients (where
the value of
Sex is F).
-
Submit the step and view the output.
Return here and select Next. |