Procedure features: |
|
Sample library
member: |
GMPSURFA
|
This
example produces a surface map that shows the annual
population growth rate of countries in Europe. Because the CONSTANT= and NLINES=
options are not used, the GMAP procedure draws a surface that consists of
50 lines and uses the default decay function to calculate spike height and
base width. And because the ROTATE= and TILT= options are not used, the map
is rotated 70 degrees around the Z axis and tilted 70 degrees with respect
to the X axis.
|
goptions reset=all border; |
|
title1 "Population Annual Growth Rate Percentage";
title2 "Europe (1995-2005)";
footnote1 j=r "GMPSURFA"; |
|
proc gmap map=maps.europe data=sashelp.demographics;
id id;
surface popagr;
run;
quit; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.