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(recipes)
#> Loading required package: dplyr#> #> Attaching package: 'dplyr'#> The following objects are masked from 'package:stats':#> #> filter, lag#> The following objects are masked from 'package:base':#> #> intersect, setdiff, setequal, union#> #> Attaching package: 'recipes'#> The following object is masked from 'package:stats':#> #> step
library(datasets)
rec<- recipe(event~., data=attenu) %>%
step_integer(station)
prepped<- prep(rec)
bake(prepped, attenu %>% dplyr::select(-.data$station))
#> Error: Can't join on 'value' x 'value' because of incompatible types (character / NULL)
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex https://reprex.tidyverse.org) and link to this issue.
Can we fail more informatively here?
Created on 2020-04-07 by the reprex package (v0.3.0)
Session info
The text was updated successfully, but these errors were encountered: