Chapter Contents |
Previous |
Next |
The GMAP Procedure |
Procedure features: |
| ||||
Data set: | REFLIB.SITES | ||||
Sample library member: | GR19N04 |
The map areas use the default pattern, which is a solid fill that rotates through the colors list. Because the colors list is specified in the GOPTIONS statement, all colors are used in the rotation. COUTLINE= outlines the map areas in gray, instead of the default outline color, which is the first color in the list, in this case, BLUE.
libname reflib 'SAS-data-library'; libname maps 'SAS-data-library'; goptions reset=global gunit=pct border cback=white colors=(blue green lime lipk cyan red) ctext=black ftext=swiss htitle=6 htext=3; |
title1 'Hazardous Waste Site Installations (1997)'; footnote1 j=r 'GR19N04 '; |
proc gmap map=maps.us data=reflib.sites; id state; choro sites / coutline=gray; run; quit; |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.