SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Creating One- and Three-Dimensional Tables


Question: The following PROC TABULATE step creates a one-dimensional table and a two-dimensional table. Add a TABLE statement to create a three-dimensional table that displays separate pages for tolerance levels (Tolerance), rows for maximum heart rate (MaxHR) and recovery heart rate (RecHR), and a column for the statistic MEAN.
proc tabulate data=clinic.stress format=8.;
   class tolerance;
   var resthr maxhr rechr timemin timesec;
   table mean*(resthr maxhr rechr);
   table tolerance,timemin timesec;
   
run;

           

back||next


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

Terms of Use & Legal Information | Privacy Statement