I have a dataset with a column contains missing values which has relatively high correlation with another columns. I want to use IterativeImputer from sklearn.impute but I receive this error:
ImportError: cannot import name 'IterativeImputer'
I upgraded my conda, my scikitlearn package and it is not resolved yet!
I had the same problem even with the 0.21 version of sklearn. You need to add an other import
from sklearn.experimental import enable_iterative_imputer
from sklearn.impute import IterativeImputer
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With