Skip to content

Update example data objects for new recipes #203

@juliasilge

Description

@juliasilge

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

No one assigned

    Labels

    upkeepmaintenance, infrastructure, and similar

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions