Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spsanderson/healthyverse
Easily install all `healthyR` packages
https://github.com/spsanderson/healthyverse
analytics cran healthcare healthcare-application installation installer meta packages r
Last synced: 3 months ago
JSON representation
Easily install all `healthyR` packages
- Host: GitHub
- URL: https://github.com/spsanderson/healthyverse
- Owner: spsanderson
- License: other
- Created: 2021-02-08T02:48:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T02:59:08.000Z (5 months ago)
- Last Synced: 2024-09-19T03:51:53.339Z (5 months ago)
- Topics: analytics, cran, healthcare, healthcare-application, installation, installer, meta, packages, r
- Language: R
- Homepage: https://www.spsanderson.com/healthyverse
- Size: 6.37 MB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - spsanderson/healthyverse - Easily install all `healthyR` packages (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# healthyverse
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/healthyverse)](https://cran.r-project.org/package=healthyverse)
![](http://cranlogs.r-pkg.org/badges/healthyverse?color=brightgreen)
![](http://cranlogs.r-pkg.org/badges/grand-total/healthyverse?color=brightgreen)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html##stable)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)## 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
```{r eval = FALSE}
# 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:
* [healthyR](https://www.spsanderson.com/healthyR/), for analyzing common data problems in administrative data.
* [healthyR.data](https://www.spsanderson.com/healthyR.data/), for a simulated data-set.
* [healthyR.ts](https://www.spsanderson.com/healthyR.ts/), for time-series functions.
* [healthyR.ai](https://www.spsanderson.com/healthyR.ai/), for ai related functions.
* [TidyDensity](https://www.spsanderson.com/TidyDensity/), for tidy style r_ distribution data.
* [tidyAML](https://www.spsanderson.com/tidyAML/), for tidymodels auto-ml.
* [RandomWalker](https://www.spsanderson.com/RandomWalker/), for random walk functions.You also get a condensed summary of conflicts with other packages you have loaded:
```{r example}
library(healthyverse)
```You can see conflicts created later with `healthyverse_conflicts()`:
```{r conflicts}
library(MASS)
healthyverse_conflicts()
```And you can check that all tidyverse packages are up-to-date with `healthyverse_update()`:
```{r update, eval = FALSE}
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
```