tidyverse / rvest

Simple web scraping for R
https://rvest.tidyverse.org
Other
1.49k stars 341 forks source link

Added a vignette that lists CRAN packages from its website. #393

Closed SermetPekin closed 7 months ago

SermetPekin commented 7 months ago

This vignette lists CRAN packages from its website.

CranRpoject

SermetPekin commented 7 months ago

I guess it failed cause there is not dplyr package in depends or imports.

has_dplyr_keyword<- function(x) {   

    isTRUE( grepl("dplyr" , x ) )
}

table[ Vectorize( has_dplyr_keyword)(table$X2) , ]

Created a no dplyr example above to pass RMD check in case there never will be dplyr in the future in description file.