In release(), check current CRAN status #613
Closed
Comments
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) |
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/ |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
i.e. table in http://cran.r-project.org/web/checks/check_results_dplyr.html
The text was updated successfully, but these errors were encountered: