Skip to contents

Provides a brief summary of the package libraries on your machine

Usage

lib_summary(sizes = FALSE)

Arguments

sizes

Should the sizes of the libraries be calculated? Logical; default FALSE.

Value

A data.frame containing the count of packages in each of the user's libraries. A size column is included if sizes = TRUE.

Examples

lib_summary()
#>                           Library n_packages
#> 1 /home/runner/work/_temp/Library         69
#> 2      /opt/R/4.3.1/lib/R/library         29
#> 3 /opt/R/4.3.1/lib/R/site-library          1
lib_summary(sizes = TRUE)
#>                           Library n_packages lib_size
#> 1 /home/runner/work/_temp/Library         69 71422948
#> 2      /opt/R/4.3.1/lib/R/library         29 69574120
#> 3 /opt/R/4.3.1/lib/R/site-library          1 14569622