Working on a project to list all available R packages listed on the CRAN website to support our data science projects. All the listed packages are sub-sites of the main CRAN website. Is there a "simple" way to extract information of the over 1500 packages available ?
My initial research (and has worked for the main CRAN site) used. The rvest and dplyr libraries. But don't know how to do sub-pages. I'm relatively new to R and still getting my feet wet.
Site: https://cran.r-project.org/web/packages/available_packages_by_name.html
(Example [with 1500+ pages])
Sub-site: https://cran.r-project.org/web/packages/tidyverse/index.html
Extracting Elements: Package Name; Package Description; Version Number; Imports; Suggests; License; Package Source (Name); and Linking (URL)
Thank You