Last active
August 18, 2021 23:48
-
-
Save MattSandy/a5e4bfdd2da9c03628d10495b1511b94 to your computer and use it in GitHub Desktop.
Inc. 5000 Fastest Growing Companies
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
library(tidyverse) | |
library(jsonlite) | |
df <- "https://api.inc.com/rest/i5list/2021" %>% | |
fromJSON() %>% | |
.$companies %>% | |
bind_rows() %>% | |
unnest(article) %>% | |
select(-editorsPick) %>% | |
write_csv("inc.csv") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment