SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Creating One- and Three-Dimensional Tables


For a one-dimensional table, you can delete or combine dimension expressions, leaving only the column dimension.

The TABLE statement below specifies columns that display minimum values of Height and Weight.

     proc tabulate data=clinic.admit;
        var height weight;
        table height*min weight*min;
     run;

Height Weight
Min Min
61.00 118.00



back||next


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

Terms of Use & Legal Information | Privacy Statement