03:00
Machine learning with tidymodels
Welcome!
You can use the magrittr %>%
or base R |>
pipe
You are familiar with functions from dplyr, tidyr, ggplot2
You have exposure to basic statistical concepts
You do not need intermediate or expert familiarity with modeling or ML
Many thanks to Davis Vaughan, Julia Silge, David Robinson, Julie Jung, Alison Hill, and DesirΓ©e De Leon for their role in creating these materials!
πͺ βIβm stuck and need help!β
π© βI finished the exerciseβ
Today:
Tomorrow:
Illustration credit: https://vas3k.com/blog/machine_learning/
Illustration credit: https://vas3k.com/blog/machine_learning/
How are statistics and machine learning related?
How are they similar? Different?
03:00
library(tidymodels)
#> ββ Attaching packages ββββββββββββββββββββββββββββ tidymodels 1.1.0 ββ
#> β broom 1.0.5 β rsample 1.1.1
#> β dials 1.2.0 β tibble 3.2.1
#> β dplyr 1.1.2 β tidyr 1.3.0
#> β infer 1.0.4 β tune 1.1.1
#> β modeldata 1.1.0 β workflows 1.1.3
#> β parsnip 1.1.0 β workflowsets 1.0.1
#> β purrr 1.0.1 β yardstick 1.2.0
#> β recipes 1.0.6
#> ββ Conflicts βββββββββββββββββββββββββββββββ tidymodels_conflicts() ββ
#> β purrr::discard() masks scales::discard()
#> β dplyr::filter() masks stats::filter()
#> β dplyr::lag() masks stats::lag()
#> β recipes::step() masks stats::step()
#> β’ Learn how to get started at https://www.tidymodels.org/start/
Tomorrow we will walk through a case study in detail to illustrate feature engineering and model tuning.
Today we will walk through the analysis at a higher level to show the model development process as a whole and give you an introduction to the data set.
The data are from the NHL where we want to predict whether a shot was on-goal or not! π
Itβs a good example to show how model development works.
Weβll start by using basic logistic regression to predict our binary outcome.
Our first model will have 12 simple predictor columns.
One initial question: there are 632 players taking shots.
For logistic regression, do we convert these to binary indicators (a.k.a. βdummiesβ)?
The previous models used the x/y coordinates.
Are there better ways to represent shot location?
How can we make location more usable for the model?
Once we find an acceptable model and feature set, the process is to
If you are using your own laptop instead of RStudio Cloud:
broom (1.0.5, CRAN), DALEX (2.4.3, CRAN), DALEXtra (2.2.1, CRAN), dials (1.2.0, CRAN), doParallel (1.0.17, CRAN), dplyr (1.1.2, CRAN), embed (1.1.1, CRAN), ggplot2 (3.4.2, CRAN (R 4.2.1)), modeldata (1.1.0, CRAN), ongoal (0.0.4, Github (topepo/ongoal@2532b2404), parsnip (1.1.0, CRAN), purrr (1.0.1, CRAN), ranger (0.15.1, CRAN), recipes (1.0.6, CRAN), rpart (4.1.16, CRAN (R 4.2.1)), rpart.plot (3.1.1, CRAN), rsample (1.1.1, CRAN), scales (1.2.1, CRAN), stacks (1.0.2, CRAN), tibble (3.2.1, CRAN (R 4.2.1)), tidymodels (1.1.0, CRAN), tidyr (1.3.0, CRAN), tune (1.1.1, CRAN), vetiver (0.2.1, CRAN), workflows (1.1.3, CRAN), workflowsets (1.0.1, CRAN), xgboost (1.7.5.1, CRAN), and yardstick (1.2.0, CRAN)
Quarto: 1.3.433