Replacing missing values is most convenient with a sklearn.impute_BaseImputer. For time series data, forward fill / interpolation / etc. are the most common methods to impute missing values, but for those techniques there are no transformers in scikit-learn.
Replacing missing values is most convenient with a
sklearn.impute_BaseImputer
. For time series data, forward fill / interpolation / etc. are the most common methods to impute missing values, but for those techniques there are no transformers in scikit-learn.