Package 'tidyverse'

Title: Easily Install and Load the 'Tidyverse'
Description: The 'tidyverse' is a set of packages that work in harmony because they share common data representations and 'API' design. This package is designed to make it easy to install and load multiple 'tidyverse' packages in a single step. Learn more about the 'tidyverse' at <https://www.tidyverse.org>.
Authors: Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]
Maintainer: Hadley Wickham <[email protected]>
License: MIT + file LICENSE
Version: 2.0.0.9000
Built: 2024-06-29 03:44:59 UTC
Source: https://github.com/tidyverse/tidyverse

Help Index


Conflicts between the tidyverse and other packages

Description

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

Usage

tidyverse_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

tidyverse_conflicts()

List all tidyverse dependencies

Description

List all tidyverse dependencies

Usage

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

Arguments

recursive

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

repos

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


List all packages in the tidyverse

Description

List all packages in the tidyverse

Usage

tidyverse_packages(include_self = TRUE)

Arguments

include_self

Include tidyverse in the list?

Examples

tidyverse_packages()

Get a situation report on the tidyverse

Description

This function gives a quick overview of the versions of R and RStudio as well as all tidyverse 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

tidyverse_sitrep()

Update tidyverse packages

Description

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

Usage

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

Arguments

recursive

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

repos

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

Examples

## Not run: 
tidyverse_update()

## End(Not run)