tidyverse

status: implemented version: 0.5.0

tidyverse is a collection of R packages popular in data science. Unfortunately, tidyverse is not available at repo2wasm because some packages depend on curl that is not available.

Note

Visit jupyterlite/jupyterlite#1753 for updated regarding the availability of tidyverse.

Problematic Code

name: r
dependencies:
  - r-tidyverse

Correct Code

Only load the parts of tidyverse that are used.

name: r
dependencies:
  - r-dplyr
  - r-ggplot2