Reusable data preprocessing for ML pipelines.
- Missing value imputation
- Feature scaling (Standard, MinMax)
- Categorical encoding (OneHot, Label)
- Text tokenization
from preprocessing import Pipeline
pipe = Pipeline([Imputer(strategy='mean'), Scaler(method='standard')])
X_clean = pipe.fit_transform(X)MIT