Skip to content

Instantly share code, notes, and snippets.

@tobyhodges
Created October 5, 2023 13:14
Show Gist options
  • Save tobyhodges/a172ac158997ca9ca68b4c517e438694 to your computer and use it in GitHub Desktop.
Save tobyhodges/a172ac158997ca9ca68b4c517e438694 to your computer and use it in GitHub Desktop.
loading data from feeds.carpentries.org and calling the build_issue_table function
issue_data <- fromJSON("https://feeds.carpentries.org/help_wanted_issues.json")
issue_data <- issue_data[, c(
"title",
"description",
"org_name",
"created_at",
"updated_at",
"labels",
"type",
"url",
"label_colors",
"font_colors",
"org",
"repo",
"full_repo",
"clean_description"
)]
issue_tbl <- build_issue_table(issue_data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment