"""Component that imputes missing data according to a specified imputation strategy."""
import pandas as pd
from sklearn.impute import SimpleImputer as SkImputer
from woodwork.logical_types import NaturalLanguage
from evalml.pipelines.components.transformers import Transformer
from evalml.utils import infer_feature_types
[docs]class SimpleImputer(Transformer):
"""Imputes missing data according to a specified imputation strategy.
Args:
impute_strategy (string): Impute strategy to use. Valid values include "mean", "median", "most_frequent", "constant" for
numerical data, and "most_frequent", "constant" for object data types.
fill_value (string): When impute_strategy == "constant", fill_value is used to replace missing data.
Defaults to 0 when imputing numerical data and "missing_value" for strings or object data types.
random_seed (int): Seed for the random number generator. Defaults to 0.
"""
name = "Simple Imputer"
hyperparameter_ranges = {"impute_strategy": ["mean", "median", "most_frequent"]}
"""{
"impute_strategy": ["mean", "median", "most_frequent"]
}"""
def __init__(
self, impute_strategy="most_frequent", fill_value=None, random_seed=0, **kwargs
):
parameters = {"impute_strategy": impute_strategy, "fill_value": fill_value}
parameters.update(kwargs)
imputer = SkImputer(strategy=impute_strategy, fill_value=fill_value, **kwargs)
self._all_null_cols = None
super().__init__(
parameters=parameters, component_obj=imputer, random_seed=random_seed
)
[docs] def fit(self, X, y=None):
"""Fits imputer to data. 'None' values are converted to np.nan before imputation and are treated as the same.
Args:
X (pd.DataFrame or np.ndarray): the input training data of shape [n_samples, n_features]
y (pd.Series, optional): the target training data of length [n_samples]
Returns:
self
"""
X = infer_feature_types(X)
nan_ratio = X.ww.describe().loc["nan_count"] / X.shape[0]
self._all_null_cols = nan_ratio[nan_ratio == 1].index.tolist()
# Not using select because we just need column names, not a new dataframe
natural_language_columns = [
col
for col, ltype in X.ww.logical_types.items()
if type(ltype) == NaturalLanguage
]
if natural_language_columns:
X = X.ww.copy()
X.ww.set_types({col: "Categorical" for col in natural_language_columns})
# Convert all bool dtypes to category for fitting
if (X.dtypes == bool).all():
X = X.astype("category")
self._component_obj.fit(X, y)
return self