Features: |
MAP= required argument referring to traditional map data DATA= required argument referring to response data ID statement
|
Data sets: | MAPS.EUROPE (map data)
SASHELP.DEMOGRAPHICS (response data) |
Sample library member: | GMPROSUR |
goptions reset=all border;
title1 "Population in Europe (2005)";
proc gmap map=maps.europe data=sashelp.demographics; id id; surface pop / constant=4 nlines=100 rotate=40 tilt=60; run; quit;