# non-numeric Code prep(impute_rec, training = credit_tr, verbose = FALSE) Condition Error in `step_impute_mean()`: Caused by error in `prep()`: ! All columns selected for the step should be double, or integer. # Deprecation warning Code recipe(~., data = mtcars) %>% step_meanimpute() Condition Error: ! `step_meanimpute()` was deprecated in recipes 0.1.16 and is now defunct. i Please use `step_impute_mean()` instead. # case weights Code impute_rec Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 12 case_weights: 1 -- Training information Training data contained 2000 data points and 186 incomplete rows. -- Operations * Mean imputation for: Age, Assets, Income | Trained, weighted --- Code impute_rec Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 12 case_weights: 1 -- Training information Training data contained 2000 data points and 186 incomplete rows. -- Operations * Mean imputation for: Age, Assets, Income | Trained, ignored weights # empty printing Code rec Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 10 -- Operations * Mean imputation for: --- Code rec Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 10 -- Training information Training data contained 32 data points and no incomplete rows. -- Operations * Mean imputation for: | Trained # printing Code print(rec) Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 13 -- Operations * Mean imputation for: Age, Assets, Income --- Code prep(rec) Message -- Recipe ---------------------------------------------------------------------- -- Inputs Number of variables by role outcome: 1 predictor: 13 -- Training information Training data contained 2000 data points and 186 incomplete rows. -- Operations * Mean imputation for: Age, Assets, Income | Trained