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-11-20 06:07:06 UTC |
Source: | https://github.com/tidyverse/tidyverse |
This function lists all the conflicts between packages in the tidyverse and other packages that you have loaded.
tidyverse_conflicts(only = NULL)
tidyverse_conflicts(only = NULL)
only |
Set this to a character vector to restrict to conflicts only with these packages. |
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.
tidyverse_conflicts()
tidyverse_conflicts()
List all tidyverse dependencies
tidyverse_deps(recursive = FALSE, repos = getOption("repos"))
tidyverse_deps(recursive = FALSE, repos = getOption("repos"))
recursive |
If |
repos |
The repositories to use to check for updates.
Defaults to |
Use cli::ansi_strip()
to get rid of the colors.
tidyverse_logo(unicode = cli::is_utf8_output())
tidyverse_logo(unicode = cli::is_utf8_output())
unicode |
Whether to use Unicode symbols. Default is |
tidyverse_logo()
tidyverse_logo()
List all packages in the tidyverse
tidyverse_packages(include_self = TRUE)
tidyverse_packages(include_self = TRUE)
include_self |
Include tidyverse in the list? |
tidyverse_packages()
tidyverse_packages()
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.
tidyverse_sitrep()
tidyverse_sitrep()
This will check to see if all tidyverse packages (and optionally, their dependencies) are up-to-date, and will install after an interactive confirmation.
tidyverse_update(recursive = FALSE, repos = getOption("repos"))
tidyverse_update(recursive = FALSE, repos = getOption("repos"))
recursive |
If |
repos |
The repositories to use to check for updates.
Defaults to |
## Not run: tidyverse_update() ## End(Not run)
## Not run: tidyverse_update() ## End(Not run)