Previous Page | Next Page

The GMAP Procedure

Example 8: Specifying Midpoints in a Prism Map


Procedure features:

PRISM statement options:

MIDPOINTS=

CDEFAULT=

Sample library member: GMPMIDPT

[Specifying Midpoints in a Prism Map]

This example specifies a set of midpoints that are used to create the response levels.

 Note about code
goptions reset=all border;
 Note about code
title1 "Adult Literacy Rate";
 Note about code
proc gmap data=sashelp.demographics(where=(cont=94))
          map=maps.africa density=low all;
   id id;
   format adultliteracypct percentn7.2;
   prism adultliteracypct / midpoints=10 to 90 by 20
                            cdefault=yellow;
run;
quit;

Previous Page | Next Page | Top of Page