country.map: A world map

Description Usage Details References Examples

Description

This data.frame corresponds to version 2.0.0 of the "Admin 0 - Countries" map from naturalearthdata.com The data.frame was modified by removing columns with non-ASCII characters. Also, I added a column called "region" which is the the all lowercase version of the column "sovereignt".

Usage

1

Details

Note that due to the resolution of the map (1:110m, or 1 cm=1,100 km), small countries are not represented on this map. See ?country.names for a list of all countries represented on the map.

References

Taken from http://www.naturalearthdata.com/downloads/110m-cultural-vectors/

Examples

1
2
3
4
5
6
7
8
## Not run: 
# render the map with ggplot2
library(ggplot2)

data(country.map)
ggplot(country.map, aes(long, lat, group=group)) + geom_polygon()

## End(Not run)

Example output



choroplethrMaps documentation built on May 2, 2019, 6:26 a.m.