There are many solutions for building maps at the country level, but in my case I want to print statistics on the continent.
The only thing that comes to my mind is to use country level maps and use the list of countries for each continent, but I was wondering if there was any simple solution for this kind of maps. To implement my idea, this will be as follows:
## produce the world map map() ## list of countries per continent SA <- c("argentina", "bolivia", "brazil", "chile", "colombia", "ecuador", "guyana", "paraguay", "peru", "suriname", "uruguay", "venezuela") map(regions = SA, fill=TRUE, add=TRUE)

source share