Last active
November 10, 2020 15:40
-
-
Save taylorreiter/32332a763bb5d3ffd45131fc971e9249 to your computer and use it in GitHub Desktop.
Parse the carpenties workshop information into an R dataframe
This file contains 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
library(jsonlite) | |
library(dplyr) | |
carpentries_json <- read_json("https://feeds.carpentries.org/dc_past_workshops.json") | |
carpentries_df <- do.call(rbind, lapply(carpentries_json, rbind)) | |
carpentries_df <- carpentries_df %>% | |
as.data.frame() %>% | |
mutate_all(as.character) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment