Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In release(), check current CRAN status #613

Closed
hadley opened this issue Oct 9, 2014 · 2 comments
Closed

In release(), check current CRAN status #613

hadley opened this issue Oct 9, 2014 · 2 comments

Comments

@hadley
Copy link
Member

hadley commented Oct 9, 2014

i.e. table in http://cran.r-project.org/web/checks/check_results_dplyr.html

@hadley
Copy link
Member Author

hadley commented Oct 10, 2014

Something like this:

library(rvest)
library(tidyr)
library(dplyr)

check <- html("http://cran.r-project.org/web/checks/check_results_dplyr.html")

tbl <- check %>%
  html_node("table") %>%
  html_table()

tbl %>% 
  separate(Flavor, c("r", "version", "os", "arch", "compiler"), "-", 
    extra = "merge") %>%
  select(version:compiler, ver = Version, time = Ttotal, status = Status)

@hadley hadley closed this as completed in 885508f Apr 28, 2015
@lock
Copy link

lock bot commented Sep 18, 2018

This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/

@lock lock bot locked and limited conversation to collaborators Sep 18, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant