Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tidymodels/learntidymodels
- Owner: tidymodels
- License: other
- Created: 2020-06-05T20:57:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-13T22:52:32.000Z (almost 3 years ago)
- Last Synced: 2024-10-31T22:03:14.732Z (12 days ago)
- Language: R
- Size: 3.52 MB
- Stars: 68
- Watchers: 9
- 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
[![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 tutorialsYou 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.