Skip to content

Instantly share code, notes, and snippets.

@bttomio
Created May 15, 2021 20:45
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 bttomio/e5dfb9ffbbe75f951b9ab872abdc16d5 to your computer and use it in GitHub Desktop.
Save bttomio/e5dfb9ffbbe75f951b9ab872abdc16d5 to your computer and use it in GitHub Desktop.
# PACKAGES NEEDED ####
list.of.packages <- c('WDI', 'ggthemes', 'knitr', 'kableExtra', 'rnaturalearth',
'tidyverse', 'ggrepel', 'gganimate', 'transformr')
new.packages <- list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)) install.packages(new.packages)
lapply(list.of.packages, library, character.only = T, quietly = T)
# Life expectancy at birth, female (years) ####
indicator <- c("Life expectancy at birth, female (years)" = 'SP.DYN.LE00.FE.IN')
Data_info <- WDI_data
datWM6 <- WDI(indicator, country="all",start = '1960', end = '2018')
name_life <- as.data.frame(Data_info$series) %>%
filter(indicator == "SP.DYN.LE00.FE.IN") %>%
select(name)
source_life <- as.data.frame(Data_info$series) %>%
filter(indicator == "SP.DYN.LE00.FE.IN") %>%
select(sourceOrganization)
ne_countries(returnclass = "sf") %>%
left_join(datWM6, c("iso_a2" = "iso2c")) %>%
filter(iso_a2 != "ATA") %>% # remove Antarctica
ggplot() +
geom_sf(aes(fill = `Life expectancy at birth, female (years)`)) +
scale_fill_viridis_c(labels = scales::number_format(scale = 1)) +
theme(legend.position="bottom") +
labs(
title = paste0(name_life, " in {closest_state}"),
fill = NULL,
caption = paste("Source:", source_life)
) +
transition_states(year)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment