caret

Caret and Tidymodels

library(caret) # The caret package library(tidymodels) # Suite of packages for tidymodeling (eg. parsnip, recipes, yardstick, etc.) library(tidyverse) # Suite of packages for tidy data science library(skimr) # Package for summary stats on datasets library(cowplot) # for making multi-paneled plots options(width = 100) # ensure skim results fit on one line I will be relying heavily on this website. My goal will be to record basic vignettes for common machine learning algorithms using caret…so that I don’t have to keep looking it up everytime I re-try something 😜.