evalml.pipelines.components.Imputer.fit

Imputer.fit(X, y=None)[source]
Fits imputer to data. ‘None’ values are converted to np.nan before imputation and are

treated as the same.

Parameters
  • X (ww.DataTable, pd.DataFrame or np.ndarray) – The input training data of shape [n_samples, n_features]

  • y (ww.DataColumn, pd.Series, optional) – The target training data of length [n_samples]

Returns

self