SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Describing the Table


Question: Based on what you've learned so far in this lesson, which PROC TABULATE step below is correctly written?

  Program 1  
     proc tabulate data=oct.report;
        class type sex;
        var totalclaim; 
        table type maritalstatus,totalclaim;
     run; 
  Program 2
     proc tabulate data=oct.report;
        class maritalstatus sex;
        var premium; 
        table sex maritalstatus,premium;
     run; 



back||next


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

Terms of Use & Legal Information | Privacy Statement