Create the NEWAF data set. This new map data set contains all the variables in the SAS/GRAPH supplied MAPS.AFRICA map data set plus the added variable REGION.


data newaf;
   set maps.africa;
   region=1;
run;