Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tidymodels/learntidymodels

Learn tidymodels with interactive learnr primers
https://github.com/tidymodels/learntidymodels

Last synced: 3 days ago
JSON representation

Learn tidymodels with interactive learnr primers

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# learntidymodels

[![R build status](https://github.com/tidymodels/learntidymodels/workflows/R-CMD-check/badge.svg)](https://github.com/tidymodels/learntidymodels/actions)
[![Codecov test coverage](https://codecov.io/gh/tidymodels/learntidymodels/branch/main/graph/badge.svg)](https://codecov.io/gh/tidymodels/learntidymodels?branch=main)
[![R-CMD-check](https://github.com/tidymodels/learntidymodels/workflows/R-CMD-check/badge.svg)](https://github.com/tidymodels/learntidymodels/actions)

Learn [tidymodels](https://www.tidymodels.org/) in the browser or locally in
your RStudio IDE with interactive [learnr](https://rstudio.github.io/learnr/) primers!

## Installation

For now, you can install the development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("tidymodels/learntidymodels")
```
## How to run the tutorials

You can easily start any tutorial with:

``` r
learnr::run_tutorial("tutorial-of-choice", package = "learntidymodels")
```

For example:

``` r
learnr::run_tutorial("pca_recipes", package = "learntidymodels")
```

## List of available tutorials

```{r, eval=TRUE, echo=FALSE, message=FALSE, error=FALSE, warning=FALSE}
knitr::kable(readr::read_tsv("inst/tutorial_list.tsv"))
```

## Code of Conduct

Please note that this project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.