find_packages {quickcode} | R Documentation |
This function gets R packages based on a keyword in their description.
find_packages(keyword)
keyword |
character, the keyword to search package descriptions for. |
character vector of matching package names or NULL if no matches.
the function in its current form only searches available.packages()
# find the list of R packages for data or machine learning
matched_pkgs <- find_packages("data")
matched_pkgs
matched_pkgs <- find_packages("machine learning")
matched_pkgs