The following output shows a simple
table that was produced by PROC TABULATE.
The data set ENERGY contains data
on expenditures of energy by two types of customers, residential and
business, in individual states in the Northeast (1) and West (4) regions
of the United States. The table sums expenditures
for states within a geographic division. The RTS option provides enough
space to display the column headings without hyphenating them.)
proc tabulate data=energy;
class region division type;
var expenditures;
table region*division, type*expenditures /
rts=20;
run;
Simple Table Produced by PROC TABULATE