find_packages | 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 <- suppressWarnings(find_packages("plotting"))
matched_pkgs
matched_pkgs <- suppressWarnings(find_packages("machine learning"))
matched_pkgs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.