tidymodels 
tidymodels is a “metapackage” for modeling and statistical analysis that shares the underlying design philosophy, grammar, and data structures of the tidyverse.
It includes a core set of packages that are loaded on startup:
-
broomtakes the messy output of built-in functions in R, such aslm,nls, ort.test, and turns them into tidy data frames. -
dialshas tools to create and manage values of tuning parameters. -
parsnipis a tidy, unified interface to creating models.recipesis a general data preprocessor with a modern interface. It can create model matrices that incorporate feature engineering, imputation, and other help tools.
-
recipesis a general data preprocessor with a modern interface. It can create model matrices that incorporate feature engineering, imputation, and other help tools. -
rsamplehas infrastructure for resampling data so that models can be assessed and empirically validated. -
tibblehas a modern re-imagining of the data frame. -
tunecontains the functions to optimize model hyper-parameters. -
workflowshas methods to combine pre-processing steps and models into a single object. -
yardstickcontains tools for evaluating models (e.g. accuracy, RMSE, etc.)
Installation
You can install the released version of tidymodels from CRAN with:
install.packages("tidymodels")Install the development version from GitHub with:
require("devtools")
install_github("tidymodels/tidymodels")When loading the package, the versions and conflicts are listed:
library(tidymodels)
#> ── Attaching packages ────────────────────── tidymodels 0.1.0 ──
#> ✓ broom 0.5.6 ✓ recipes 0.1.13
#> ✓ dials 0.0.7 ✓ rsample 0.0.7
#> ✓ dplyr 1.0.0 ✓ tibble 3.0.1
#> ✓ ggplot2 3.3.2 ✓ tune 0.1.0
#> ✓ infer 0.5.2 ✓ workflows 0.1.1
#> ✓ parsnip 0.1.1 ✓ yardstick 0.0.6
#> ✓ purrr 0.3.4
#> ── Conflicts ───────────────────────── tidymodels_conflicts() ──
#> x purrr::discard() masks scales::discard()
#> x dplyr::filter() masks stats::filter()
#> x dplyr::lag() masks stats::lag()
#> x recipes::step() masks stats::step()Contributing
This project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
-
For questions and discussions about tidymodels packages, modeling, and machine learning, please post on RStudio Community.
-
Most issues will likely belong on the GitHub repo of an individual package. If you think you have encountered a bug with the tidymodels metapackage itself, please submit an issue.
-
Either way, learn how to create and share a reprex (a minimal, reproducible example), to clearly communicate about your code.
-
Check out further details on contributing guidelines for tidymodels packages and how to get help.