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)
recipe(~., data=mtcars) %>%
step_normalize(disp) %>%
prep()
#> Error in array(STATS, dims[perm]): 'dims' cannot be of length 0
recipe(~., data=mtcars) %>%
step_normalize(disp, vs) %>%
prep()
#> Recipe#> #> Inputs:#> #> role #variables#> predictor 11#> #> Training data contained 32 data points and no missing data.#> #> Operations:#> #> Centering and scaling for disp, vs [trained]
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.
Created on 2022-04-22 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: