A fortified data.frame which contains an hexagonal bin map of all 32 Mexican states

data(mxhexbin.map)

Examples

## render the map with ggplot2
library(ggplot2)

data(mxhexbin.map)
ggplot(mxhexbin.map, aes(long, lat, group=group)) +
  geom_polygon(color = "black") +
  coord_map()