healthyverse

CRAN_Status_Badge Lifecycle: stable PRs Welcome

Overview

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.

Installation

# Install from CRAN
install.packages("healthyverse")
# Or the development version from GitHub
# install.packages("devtools")
devtools::install_github("spsanderson/healthyverse")

Usage

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.3.9000 ──
#> ✔ healthyR      0.2.1          ✔ healthyR.ai   0.0.13    
#> ✔ healthyR.data 1.0.2.9000     ✔ TidyDensity   1.2.4     
#> ✔ healthyR.ts   0.2.8          ✔ tidyAML       0.0.1
#> Warning: package 'TidyDensity' was built under R version 4.2.2
#> Warning: package 'tidyAML' was built under R version 4.2.2
#> Warning: package 'parsnip' was built under R version 4.2.3
#> 

You can see conflicts created later with healthyverse_conflicts():

library(MASS)
healthyverse_conflicts()

And you can check that all tidyverse packages are up-to-date with healthyverse_update():

healthyverse_update()
#> The following packages are out of date:
#>  * healthyR (0.4.0 -> 0.4.1)
#>  * healthyR.ts   (0.4.1 -> 0.5)
#>  * healthyR.data  (0.12.6 -> 0.12.7)
#> Update now?
#> 
#> 1: Yes
#> 2: No