SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Labeling Keywords for Statistics and ALL


Question: Write a statement to label the statistic SUM as Total and the special class variable ALL as All Dates. (Notice that SUM is the default statistic for this table.)
proc tabulate data=clinic.therapy;
   class date;
   var swim;
   table swim,date all;
   
run;


           


back||next


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

Terms of Use & Legal Information | Privacy Statement