Skip to content

Instantly share code, notes, and snippets.

@MattSandy
Last active August 18, 2021 23:48
Show Gist options
  • Save MattSandy/a5e4bfdd2da9c03628d10495b1511b94 to your computer and use it in GitHub Desktop.
Save MattSandy/a5e4bfdd2da9c03628d10495b1511b94 to your computer and use it in GitHub Desktop.
Inc. 5000 Fastest Growing Companies
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