Creating Tabular Reports |
Lesson
Summary![]() ![]() |
This page contains
|
I. Text Summary
To go to the page where a task, programming feature, or concept was presented, select a link. |
Setting Up a Table Before you begin writing a PROC TABULATE step, it's a good idea to sketch the table you want. After you sketch the table, you can write the basic code to compute the statistics that you want to display. When you're satisfied with the basic report, you can add options and statements to modify its appearance.
Beginning Your PROC TABULATE Step
Specifying Variables
Describing the Table
Specifying Statistics
Selecting Observations
Specifying Totals
Labeling Keywords for Statistics and ALL
Enhancing Your Table
Formatting the Table
Creating One- and Three-Dimensional Tables
|
II. Syntax
To go to the page where a statement or option was presented, select a link. |
III. Sample Program libname clinic 'c:\users\reports\year5\data'; proc tabulate data=clinic.admit format=6.; class actlevel sex; var fee; table fee; table actlevel all,fee; table sex,actlevel all,fee; keylabel all='All Patients'; run;
|
IV. Points to Remember
|
![]() ![]() ![]() ![]() ![]() |
|
![]() |
![]() |
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA. All rights reserved.