Skip to content

Instantly share code, notes, and snippets.

@gtgrthrst
Created May 16, 2021 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtgrthrst/6c197c711f397469d8de829297504c9f to your computer and use it in GitHub Desktop.
Save gtgrthrst/6c197c711f397469d8de829297504c9f to your computer and use it in GitHub Desktop.
library(ggplot2)
library(dplyr)
require(maps)
require(viridis)
theme_set(
theme_void()
)
world_map <- map_data("world")
ggplot(world_map, aes(x = long, y = lat, group = group)) +
geom_polygon(fill="lightgray", colour = "white")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment