Module pipeline

Module pipeline 

Source
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§

ColumnTransformer
ColumnTransformer applies different transformers to different columns
Pipeline
A pipeline of transformations to be applied sequentially

Enums§

RemainderOption
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