knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

pkguse

The goal of pkguse is to help users take inventory of their most used packages

Installation

You can install the dev version of pkguse from Github with:

remotes::install_github("mkearney/pkguse")

Example

This is a basic use example:

## load {pkguse}
library(pkguse)

## supply dir locations
p <- pkg_use(c("~/Documents", "~/Dropbox", "~/R"))

## view freq table [tibble] output
print(p, n = 25)

The output has methods for plot

## plot pkguse (top 25)
plot(p, n = 25)

and summary

summary(p)


mkearney/pkguse documentation built on Nov. 4, 2019, 7 p.m.