Previous Page | Next Page

The GCHART Procedure

Example 1: Specifying the Sum Statistic in a Block Chart


Procedure features:

BLOCK statement option:

SUMVAR=

Other features:

FORMAT statement

GOPTIONS statement option:

BORDER

Sample library member: GCHBKSUM

[GCHBKSUM-Specifying Sum Statistic in a Block Chart]

This example produces a block chart of total sales for three sites by charting the values of the character variable SITE and calculating the sum of the variable SALES for each site. It prints formatted values of the sales statistics below the blocks.

All the blocks use the same pattern because by default patterns change for subgroups and in this example subgroups are not specified.

 Note about code
goptions reset=all border;
 Note about code
data totals;
length dept $ 7 site $ 8;
input dept site quarter sales;
datalines;
Parts Sydney 1 7043.97
Parts Atlanta 1 8225.26
Parts Paris 1 5543.97
Tools Sydney 4 1775.74
Tools Atlanta 4 3424.19
Tools Paris 4 6914.25
;
 Note about code
title "Total Sales";
footnote j=r "GCHBKSUM ";
 Note about code
proc gchart data=totals;
format sales dollar8.;
block site / sumvar=sales;
run;
quit;

Previous Page | Next Page | Top of Page