-
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 all,age*mean;
where sex='F';
run;
-
Label
Actlevel as Activity Level, ALL as
All Levels, and MEAN as Average.
-
Add Statistics for Females as a title and cancel any footnotes
in effect.
-
Submit the step and view the output.
Return here and select Next.
|