Skip to contents

plot graphs showing the dependencies between package functions

Usage

documentPackageFunctionDependencies(packagenames, to.pdf = FALSE)

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")
}