In python's sklearn
library there exist two classes, which are doing approximately the same things:
sklearn.preprocessing.Imputer
and sklearn.impute.SimpleImputer
The only difference that I found is a "constant"
strategy
type in SimpeImputer
.
Is there any other differences? When should be Imputer
used instead of SimpleImputer
?