Using Tags

tidymodels has a set of core packages that are loaded and attached when the tidymodels package is loaded.

There are other sets of packages that can be attached via tidymodels::tag_attach(tag) where the tag is a character string. Existing tags are:

library(tidymodels)
tag_show()
#> All tags:
#> 
#> Bayesian analysis: 'tidyposterior', 'tidybayes'
#> deep learning: 'keras'
#> feature engineering: 'keras', 'textrecipes'
#> parallel processing: 'furrr'
#> resampling: 'infer', 'tidyposterior'
#> text analysis: 'tidytext', 'keras', 'textrecipes'
#> time series: 'timetk', 'tidyquant', 'sweep', 'modeltime', 'tsibble', 'fable'
#> extra recipes: 'embed', 'textrecipes', 'themis'
#> extra models: 'discrim', 'plsmod', 'rules', 'poissonreg', 'baguette'