tidymodels and parsnip packages for estimating regression modelsrsampleThis is not a math/stats class. In class we will briefly summarize how these methods work and spend the bulk of our time on estimating and interpreting these models. That said, you should have some understanding of the mathematical underpinnings of statistical learning methods prior to implementing them yourselves. See below for some recommended readings:
caret package.Run the code below in your console to download the exercises for today.
usethis::use_course("cis-ds/machine-learning")
caret - a package which unifies hundreds of separate algorithms for generating statistical/machine learning models into a single standardized interface. Very robust, but pre-tidyverse and on the path to deprecation.tidymodels - a collection of packages for machine and statistical learning using tidyverse principles.