select
Select(features)
Bases: Transform
Selects a subset of features from the data.
Initializes the Select transform.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
features
|
IntoExpr | Iterable[IntoExpr]
|
The features to select. Treats the selection as a
parameter to polars |
required |
Source code in src/flowcean/transforms/select.py
16 17 18 19 20 21 22 23 24 |
|