Created
May 22, 2018 05:01
-
-
Save chrisvoncsefalvay/b9f135cd3f3e842cb7629a3f58042d55 to your computer and use it in GitHub Desktop.
Plotting the current DRC Ebola status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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