Package 'pactaverse'

Title: Easily Install and Load the 'PACTA-verse'
Description: The 'pactaverse' is a set of packages that work to help R users implement various functionality related to the PACTA open source project.
Authors: Jackson Hoffart [aut, cre, ctr] , CJ Yetman [aut, ctr] , Jacob Kastl [aut, ctr], Monika Furdyna [aut, ctr], Alex Axthelm [aut, ctr] , RMI [cph, fnd]
Maintainer: Jackson Hoffart <[email protected]>
License: MIT + file LICENSE
Version: 0.0.0.9000
Built: 2024-10-30 06:44:43 UTC
Source: https://github.com/rmi-pacta/pactaverse

Help Index


Conflicts between the pactaverse and other packages

Description

This function lists all the conflicts between packages in the pactaverse and other packages that you have loaded.

Usage

pactaverse_conflicts(only = NULL)

Arguments

only

Set this to a character vector to restrict to conflicts only with these packages.

Details

There are four conflicts that are deliberately ignored: intersect, union, setequal, and setdiff from dplyr. These functions make the base equivalents generic, so shouldn't negatively affect any existing code.

Examples

pactaverse_conflicts()

List all pactaverse dependencies

Description

List all pactaverse dependencies

Usage

pactaverse_deps(recursive = FALSE, repos = getOption("repos"))

Arguments

recursive

If TRUE, will also list all dependencies of pactaverse packages.

repos

The repositories to use to check for updates. Defaults to getOption("repos").


List all packages in the pactaverse

Description

List all packages in the pactaverse

Usage

pactaverse_packages(include_self = TRUE)

Arguments

include_self

Include pactaverse in the list?

Examples

pactaverse_packages()

Get a situation report on the pactaverse

Description

This function gives a quick overview of the versions of R and RStudio as well as all pactaverse packages. It's primarily designed to help you get a quick idea of what's going on when you're helping someone else debug a problem.

Usage

pactaverse_sitrep()

Update pactaverse packages

Description

This will check to see if all pactaverse packages (and optionally, their dependencies) are up-to-date, and will install after an interactive confirmation.

Usage

pactaverse_update(recursive = FALSE, repos = getOption("repos"))

Arguments

recursive

If TRUE, will also list all dependencies of pactaverse packages.

repos

The repositories to use to check for updates. Defaults to getOption("repos").

Examples

## Not run: 
pactaverse_update()

## End(Not run)