pkgndep {pkgndep} | R Documentation |
Package dependency analysis
Description
Package dependency analysis
Usage
pkgndep(package, verbose = TRUE, online = TRUE, load = FALSE, parse_namespace = TRUE)
Arguments
package |
Package name. The value can be 1. a CRAN/Bioconductor package, 2. an installed package, 3. a path of a local package, 4. URL of a GitHub repository. |
verbose |
Whether to show messages. |
online |
If the value is |
load |
If the value is |
parse_namespace |
Whether to also parse the NAMESPACE file. It is only used internally. |
Value
A pkgndep
object.
Examples
## Not run:
x = pkgndep("ComplexHeatmap")
## End(Not run)
# The `x` variable generated by `pkgndep()` is already saved in this package.
x = readRDS(system.file("extdata", "ComplexHeatmap_dep.rds", package = "pkgndep"))
x
dependency_heatmap(x)