median
              Median(features, *, replace=False)
    
              Bases: Transform
Replaces time-series features with their median value.
Initializes the Median transform.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                features
             | 
            
                  str | Iterable[str]
             | 
            
               The feature or features the median should be calculated for.  | 
            required | 
                replace
             | 
            
                  bool
             | 
            
               Whether to replace the original features with the
transformed ones. If set to False, the default, the value will
be added as a new feature named   | 
            
                  False
             | 
          
Source code in src/flowcean/polars/transforms/median.py
                    15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31  |  |