Previous Page | Next Page

The GMAP Procedure

Example 2: Specifying Response Levels in a Block Map


Procedure features:

BLOCK statement options:

CEMPTY=

LEVELS=

SHAPE=

RELZERO

Sample library member: GMPLEVEL

[Response Levels in Block Map]

This example uses the LEVELS= option to specify the number of response levels for the blocks. The LEVELS= option tells GMAP how many response levels and the GMAP procedure calculates the quantiles.

 Note about code
goptions reset=all border;
 Note about code
title1 "Gross National Income per Capita";
title2 "South America";
footnote1 j=r "GMPLEVEL";
 Note about code
proc gmap data=sashelp.demographics(where=(cont=92))
          map=maps.samerica all;
   id id;
   block gni / levels=3 shape=prism
               relzero cempty=gray;
run;
quit;

Previous Page | Next Page | Top of Page