Chapter Contents |
Previous |
Next |
The TABULATE Procedure |
Procedure features: |
| |||||||||||||||||||||||||||||
Other features: | FORMAT procedure |
proc format; picture pctfmt low-high='009 %'; run; |
title "Fundraiser Sales"; |
proc tabulate format=7.; |
class team classrm; var sales; |
table (team all)*sales=' ', |
classrm='Classroom'*(sum colpctsum*f=pctfmt9. rowpctsum*f=pctfmt9. reppctsum*f=pctfmt9.) all |
/rts=20 row=float; run; |
Output |
A Closer Look |
COLPCTSUM=31/91*100=34% | |
ROWPCTSUM=31/67*100=46% | |
REPPCTSUM=31/204*100=15% |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.