SAS OnlineTutorback||next

Try It! Specify results formats for output from the data set Clinic.Admit.
Note: Complete this practice only if you are using SAS software in a desktop operating environment.

Creating HTML output? Read this first.

  1. Specify that your results appear both as a listing and as HTML output stored in a permanent location. Select the style of your choice and specify a browser for viewing HTML output (choose the internal browser if available).

  2. Copy the following program and paste it into the Program Editor window (or issue the command copy sashelp.oltutor..source).
    proc tabulate data=clinic.admit;
       class sex;
       var height weight;
       table sex*(height weight),mean;
    run;
    
  3. Submit the program and view the PROC TABULATE results in the Output window.

  4. View the HTML version of the PROC TABULATE results.

  5. Check the folder you specified and verify that the HTML file was created.

    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