Skip to content

Instantly share code, notes, and snippets.

library(tidyverse)
library(maps)
library(gganimate)
library(countrycode)
wkshp_data <- read_csv("https://data.softwarecarpentry.org/api/queries/118/results.csv?api_key=GR8itg5dtYtq1A1Myv8bR5rrDNMZRlGc4cMVSnfB") %>%
filter(start_date < "2019-07-01")
wkshp_data <- wkshp_data %>%

I'm a regular list

  1. first
  2. second
  3. third

I'm a modified list

{:start="10"}

  1. tenth
@fmichonneau
fmichonneau / carpentries-workshops-through-time.R
Created October 13, 2020 14:43
Create animated map of all Carpentries workshops through time
library(jsonlite)
library(tidyverse)
library(maps)
library(gganimate)
library(countrycode)
workshop_data <- jsonlite::fromJSON(
"https://feeds.carpentries.org/all_workshops.json"
)