You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(tidymodels)
bag_spec<- decision_tree() %>%
set_engine("C5.0")
workflow(mpg~., bag_spec) %>%
fit(mtcars)
#> Error in `pull_workflow_spec_encoding_tbl()`:#> ! Exactly 1 model/engine/mode combination must be located.#> ℹ This is an internal error in the workflows package, please report it to the package authors.