SAS OnlineTutorback||next

Try It! Submit three SAS programs and view the results.

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.a.source).
    proc tabulate data=clinic.admit;
       class sex;
       var height weight;
       table sex*(height weight),mean;
    run;
    
  2. Submit the program and view the PROC TABULATE output. Then redisplay the Log and Program Editor windows.



  3. 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;
    
  4. View the report in the REPORT window. Then select File Close to close the REPORT window.



  5. 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;
    

  6. 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.

Solution

back||next


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

Terms of Use & Legal Information | Privacy Statement