-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
upkeepmaintenance, infrastructure, and similarmaintenance, infrastructure, and similar
Description
I use some of the stacks data objects like reg_res_lr in setting up tests in vetiver, and I see these warnings about keep_original_cols:
library(stacks)
data("tree_frogs", package = "stacks")
tree_test <- tree_frogs %>%
dplyr::select(-hatched, -latency, -clutch)
frog_reg <-
stacks() %>%
add_candidates(reg_res_lr) %>%
add_candidates(reg_res_sp) %>%
blend_predictions(penalty = 20) %>%
fit_members()
#> Warning: 'keep_original_cols' was added to `step_ns()` after this recipe was created.
#> Regenerate your recipe to avoid this warning.
#> 'keep_original_cols' was added to `step_ns()` after this recipe was created.
#> Regenerate your recipe to avoid this warning.
#> 'keep_original_cols' was added to `step_ns()` after this recipe was created.
#> Regenerate your recipe to avoid this warning.Created on 2023-10-31 with reprex v2.0.2
Do you think these objects could be regenerated so they don't generate warnings with the current version of recipes?
Metadata
Metadata
Assignees
Labels
upkeepmaintenance, infrastructure, and similarmaintenance, infrastructure, and similar