Load dependency analysis results of all packages

load_all_pkg_dep(hash = TRUE)

Arguments

hash

Whether to convert the named list to a hash table by hash.

Details

It is calculated based on a specific CRAN/Bioconductor snapshot. The version is set via pkgndep_opt$heaviness_db_version.

Value

A list (as a hash table) of pkgndep objects where each element corresponds to the analysis on one package.

Examples

# \dontrun{
lt = load_all_pkg_dep()
length(lt)
#> [1] 22392
head(names(lt))
#> [1] "A3"          "AATtools"    "ABACUS"      "ABC.RAP"     "ABCanalysis"
#> [6] "ABCoptim"   
lt[["ggplot2"]]
#> 'ggplot2', version 3.3.6
#> - 35 packages are required for installing 'ggplot2'.
#> - 139 packages are required if installing packages listed in all fields in DESCRIPTION.
#> Using pkgndep_db snapshot, version: 2022-11-02
# }