Skip to content

Instantly share code, notes, and snippets.

@chrisvoncsefalvay
Created May 22, 2018 05:01
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 chrisvoncsefalvay/b9f135cd3f3e842cb7629a3f58042d55 to your computer and use it in GitHub Desktop.
Save chrisvoncsefalvay/b9f135cd3f3e842cb7629a3f58042d55 to your computer and use it in GitHub Desktop.
Plotting the current DRC Ebola status
# Fetch most recent DRC data.
library(readr)
library(curl)
current_drc_data <- Sys.time() %>%
format("%d%H%M%S%b%Y") %>%
paste("raw_data/drc/", "drc-", ., ".csv", sep = "") %T>%
curl_fetch_disk("https://raw.githubusercontent.com/cmrivers/ebola_drc/master/drc/data.csv", .) %>%
read_csv()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment