getDependencies {petersenlab} | R Documentation |
Determine package dependencies.
getDependencies(packs)
packs |
Character vector of names of target packages. |
Determine which packages depend on a target package (or packages).
Vector of packages that depend on the target package(s).
Other packages:
load_or_install()
old <- options("repos")
options(repos = "https://cran.r-project.org")
getDependencies("tidyverse")
options(old)