Skip to content

Instantly share code, notes, and snippets.

@riinuots
Created October 30, 2019 12:46
Show Gist options
  • Save riinuots/f7e0ca6fdd08f4ad144c56ad40db2101 to your computer and use it in GitHub Desktop.
Save riinuots/f7e0ca6fdd08f4ad144c56ad40db2101 to your computer and use it in GitHub Desktop.
library(tidyverse)
library(rnaturalearth)
library(sf)
theme_set(theme_void())
world_map = ne_countries(scale = "medium", returnclass = "sf") %>%
st_transform(crs = "+proj=moll") %>%
filter(sovereignt != "Antarctica")
healthyr_iso= c("GB", "EE", "GH")
world_map %>%
ggplot() +
geom_sf(fill = NA, colour = "grey")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment