Generate the choropleth map using the merged response data set and feature table. The ID variable is the $GEOREF formatted variable that associates the feature table data with its map data set (MAPS.US). DISCRETE specifies that each level of REGION is a separate response level.
proc gmap data=both; id _map_geometry_; choro region/discrete; run; quit;