Description Usage Details References Examples
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".
1 |
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.
Taken from http://www.naturalearthdata.com/downloads/110m-cultural-vectors/
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.