SAS OnlineTutorback||next

Try It! Using the Clinic.Admit data set, add labels, specify a title, and cancel footnotes.

Creating HTML output? Read this first.

  1. 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;
    
    
  2. Label Actlevel as Activity Level, ALL as All Levels, and MEAN as Average.

  3. Add Statistics for Females as a title and cancel any footnotes in effect.

  4. Submit the step and view the output.

    Return here and select Next.

Solution
back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA.
All rights reserved.

Terms of Use & Legal Information | Privacy Statement