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
In section 3.3.2.1, titled "Estimated statistic", the following code blocks result in errors:
step_medianimpute:
ames_recipe %>% step_medianimpute(Gr_Liv_Area)
Error:
! `step_medianimpute()` was deprecated in recipes 0.1.16 and is now
defunct.
ℹ Please use `step_impute_median()` instead.
step_modeimpute:
ames_recipe %>% step_modeimpute(Pool_QC)
Error:
! `step_modeimpute()` was deprecated in recipes 0.1.16 and is now
defunct.
ℹ Please use `step_impute_mode()` instead.
step_knnimpute:
ames_recipe %>% step_knnimpute(all_predictors(), neighbors = 6)
Error:
! `step_knnimpute()` was deprecated in recipes 0.1.16 and is now
defunct.
ℹ Please use `step_impute_knn()` instead.
The text was updated successfully, but these errors were encountered:
guidothekp
changed the title
step_medianimpute is deprecated
step_<xxx>impute are deprecated
Apr 7, 2023
In section 3.3.2.1, titled "Estimated statistic", the following code blocks result in errors:
The text was updated successfully, but these errors were encountered: