| Features: |
PROC GREMOVE options DATA= and OUT= |
| Other features: |
GMAP procedure |
| Sample library member: | GRMAFRIC |
MAPS.AFRICA Data Set
OBS ID SEGMENT X Y
1 125 1 0.57679 1.43730
2 125 1 0.57668 1.43467
3 125 1 0.58515 1.42363
.
.
.
3462 990 1 1.04249 0.50398
3463 990 1 1.04184 0.50713
3464 990 1 1.04286 0.50841
AFRICA Data Set
OBS X Y SEGMENT REGION
1 0.24826 1.02167 1 1
2 0.25707 1.02714 1 1
3 0.26553 1.03752 1 1
.
.
.
982 1.19071 1.30043 3 1
983 1.18675 1.30842 3 1
984 1.18518 1.32822 3 1goptions reset=all border;
data newaf; set maps.africa; region=1; run;
proc gremove data=newaf out=africa; by region; id id; run;
title "Africa with Boundaries"; footnote j=r "GRMAFRIC(a) ";
pattern value=mempty color=blue;
proc gmap map=maps.africa data=maps.africa all; id id; choro id / nolegend levels=1; run;
title "Africa without Boundaries"; footnote j=r "GRMAFRIC(b) ";
proc gmap data=africa map=africa; id region; choro region / nolegend levels=1; run; quit;