Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 19c DBA By Examples Installation And Administration

Authors: Ravinder Gupta

1st Edition

B09FC7TQJ6, 979-8469226970

More Books

Students also viewed these Databases questions

Question

Why do HCMSs exist? Do they change over time?

Answered: 1 week ago