This example shows how to
eliminate blank row headings
from a table. To do so, you must both provide blank labels for the row headings
and specify ROW=FLOAT in the TABLE statement.
|
options nodate pageno=1 linesize=80 pagesize=60; |
|
proc tabulate data=energy format=dollar12.; |
|
class region division type; |
|
var expenditures; |
|
table region*division*expenditures=' '*sum=' ', |
|
type='Customer Base' |
|
/ rts=25 row=float; |
|
format region regfmt. division divfmt. type usetype.; |
|
title 'Energy Expenditures for Each Region';
title2 '(millions of dollars)';
run; |
|
Energy Expenditures for Each Region 1
(millions of dollars)
---------------------------------------------------
| | Customer Base |
| |-------------------------|
| |Residential | Business |
| | Customers | Customers |
|-----------------------+------------+------------|
|Region |Division | | |
|-----------+-----------| | |
|Northeast |New England| $7,477| $5,129|
| |-----------+------------+------------|
| |Middle | | |
| |Atlantic | $19,379| $15,078|
|-----------+-----------+------------+------------|
|West |Mountain | $5,476| $4,729|
| |-----------+------------+------------|
| |Pacific | $13,959| $12,619|
---------------------------------------------------
| |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.