-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
upkeepmaintenance, infrastructure, and similarmaintenance, infrastructure, and similar
Description
Reprex:
library(workflows)
library(parsnip)
library(recipes)
rec_spec <-
recipe(mpg ~ ., data = mtcars) %>%
update_role(disp, new_role = "date") %>%
step_center(disp)
lm_spec <- linear_reg()
wf_spec <- workflow(rec_spec, lm_spec)
wf_fit <- fit(wf_spec, data = mtcars)
predict(wf_fit, mtcars %>% select(-disp))
#> Error in `hardhat::forge()`:
#> ! The required column "disp" is missing.Metadata
Metadata
Assignees
Labels
upkeepmaintenance, infrastructure, and similarmaintenance, infrastructure, and similar