r-recipes Questions
1
I want to evaluate the performance of several (mostly) linear regression models on the same dataset. I thought maybe using tidymodels packages along with the workflowsets::workflow_set() might work...
Salesmanship asked 21/2, 2022 at 20:40
1
Solved
I try to use tidymodels to tune the workflow with recipe and model parameters. When tuning a single workflow there is no problem. But when tuning a workflowsets with several workflows it always fai...
Deft asked 30/7, 2021 at 10:49
1
After designing a Tidymodels recipe-based workflow, which is tuned then fitted to some training data, I'm not clear what objects (fitted "workflow", "recipe", ..etc) should be s...
Saez asked 2/2, 2021 at 22:20
1
Solved
I always finish up my model to fit and predict without using prep(), bake(), or juice():
rec_wflow <-
workflow() %>%
add_model(lr_mod) %>%
add_recipe(rec)
data_fit <-
rec_wflow...
Schwa asked 19/10, 2020 at 1:27
1
Solved
I've put together a data preprocessing recipe for the recent coffee dataset featured on TidyTuesday. My intention is to generate a workflow, and then from there tune a hyperparameter. I'm specifica...
Sibelle asked 21/7, 2020 at 5:55
1
Solved
I read the introduction to tidymodels and I am confused about what prep(), bake() and juice() from the recipes package do to the data. What each does? I honestly found confusing to have such names ...
Gotthelf asked 4/6, 2020 at 8:14
1
© 2022 - 2024 — McMap. All rights reserved.