The healthyverse is a set of packages that work in harmony because they share common data representations and API design. The healthyverse package is designed to make it easy to install and load core packages from the healthyverse in a single command.
# Install from CRAN
install.packages("healthyverse")
# Or the development version from GitHub
# install.packages("devtools")
devtools::install_github("spsanderson/healthyverse")
library(healthyverse)
will load the core healthyverse packages:
You also get a condensed summary of conflicts with other packages you have loaded:
library(healthyverse)
#> -- Attaching packages ------------------------------- healthyverse 1.0.1.9000 --
#> v healthyR 0.1.7.9000 v healthyR.ai 0.0.6
#> v healthyR.data 1.0.1.9000 v TidyDensity 0.0.1
#> v healthyR.ts 0.1.7
#> Warning: package 'healthyR.ts' was built under R version 4.1.2
#>
You can see conflicts created later with healthyverse_conflicts()
:
And you can check that all tidyverse packages are up-to-date with healthyverse_update()
: