My problem: I want to obtain a map from a given country with subregions in r.
So far: For example map
package provides counties
map which database produces a map of the counties of the United States mainland generated from US Department of the Census data. Or for example italy
map which provides subregions, such as in a pair of lines of code is possible to plot it:
it <- ggplot2::map_data("italy")
library(ggplot2)
ggplot(it, aes(long, lat, group = group)) +
geom_polygon() +
coord_fixed()
I would like to obtain same maps for another countries but unfortunately I think that maps
package only provides this information for USA, Italy and France. Is there a package which provides such information?