plot graphs showing the dependencies between package functions
Source:R/hsLibGeneral.R
documentPackageFunctionDependencies.Rd
plot graphs showing the dependencies between package functions
Arguments
- packagenames
vector of character containing the names of the packages of which functional dependencies are to be documented.
- to.pdf
if TRUE, graphical output is written to a pdf file
Examples
# Show names of all installed KWB-packages
grep("^kwb\\.", library()$results[, "Package"], value = TRUE)
#> [1] "kwb.base" "kwb.code" "kwb.datetime" "kwb.db"
#> [5] "kwb.en13508.2" "kwb.event" "kwb.fakin" "kwb.file"
#> [9] "kwb.misc" "kwb.pathdict" "kwb.plot" "kwb.prep"
#> [13] "kwb.read" "kwb.utils"
# Document one of the installed packages
if (FALSE) {
documentPackageFunctionDependencies("kwb.plot")
}