Skip to content

Instantly share code, notes, and snippets.

@pachevalier
Created May 14, 2014 13:30
Show Gist options
  • Select an option

  • Save pachevalier/057d9a250f3088d1cc89 to your computer and use it in GitHub Desktop.

Select an option

Save pachevalier/057d9a250f3088d1cc89 to your computer and use it in GitHub Desktop.
library(ggplot2)
library(maps)
world <- map_data("world")
ggplot() +
geom_map( data=world, aes(x=long, y=lat, group = group, map_id = region),colour="white", fill="grey10", map = world ) +
coord_map()
ggplot() +
geom_map( data=world, aes(x=long, y=lat, group = group, map_id = region),colour="white", fill="grey10", map = world )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment