Expand description
Pipeline API for chaining transformations Pipeline API for chaining transformations
This module provides utilities for creating pipelines of transformations that can be applied sequentially, similar to scikit-learn’s Pipeline.
Structs§
- Column
Transformer - ColumnTransformer applies different transformers to different columns
- Pipeline
- A pipeline of transformations to be applied sequentially
Enums§
- Remainder
Option - Options for handling columns not specified in transformers
Traits§
- Transformer
- Trait for all transformers that can be used in pipelines
Functions§
- make_
column_ transformer - Make a column transformer from a list of (name, transformer, columns) tuples
- make_
pipeline - Make a pipeline from a list of (name, transformer) tuples