pacs

R build status CRAN codecov

For more information please visit the pacs website.

Functions Reference

A set of tools that make life easier for developers and maintainers of R packages.

An Internet connection is required to take full advantage of most of the features.

Almost all calls which requiring an Internet connection are cached (for 30 minutes) by the memoise package, so the second invocation of the same command (and arguments) is immediate. Restart the R session if you want to clear cached data.

Installation

Development version:

# install.packages("remotes")
remotes::install_github("polkas/pacs")

CRAN:

install.packages("pacs")

Examples

For more examples with descriptions please visit the walk-through vignette.

Validate the library:

pacs::lib_validate(
  checkred = list(
    scope = c("ERROR", "FAIL"),
    # by default all flavors
    flavors = NULL
  )
)

All package check statuses for all CRAN servers:

pacs::checked_packages()

All CRAN releases of a package:

pacs::pac_timemachine("dplyr")

Compare package DESCRIPTION file dependencies between versions:

pacs::pac_compare_versions("shiny", "1.0.0", "1.5.0")

Looking for heavy dependencies:

pacs::pac_deps_heavy("caret")