Question: Please consider the following code, which uses gh ( Bryan and Wickham 2 0 2 1 ) to access the GitHub API ( you will

Please consider the following code, which uses gh (Bryan and Wickham 2021) to access the GitHub API (you will need to have set-up GitHub on your computer, as covered in Chapter 3).
# Based on Tyler Bradley and Monica Alexander
library(tidyverse)
library(gh)
repos <- gh("/users/RohanAlexander/repos", per_page =100)
repo_info <- tibble(
name = map_chr(repos, "name"),
created = map_chr(repos, "created_at"),
full_name = map_chr(repos, "full_name"),
)
When was the repo for heapsofpapers created?
Group of answer choices
2021-02-23
2021-05-25
2021-03-06
2021-04-27

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!