https://github.com/tidymodels/learntidymodels
Learn tidymodels with interactive learnr primers
https://github.com/tidymodels/learntidymodels
Last synced: about 1 year ago
JSON representation
Learn tidymodels with interactive learnr primers
- Host: GitHub
- URL: https://github.com/tidymodels/learntidymodels
- Owner: tidymodels
- License: other
- Created: 2020-06-05T20:57:16.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2021-12-13T22:52:32.000Z (over 4 years ago)
- Last Synced: 2025-03-31T15:29:47.444Z (about 1 year ago)
- Language: R
- Size: 3.52 MB
- Stars: 67
- Watchers: 8
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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
[](https://github.com/tidymodels/learntidymodels/actions)
[](https://codecov.io/gh/tidymodels/learntidymodels?branch=main)
[](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.