resample
Resample(sampling_rate, *, interpolation_method='linear')
Bases: Transform
Resample time series features to a given sampling rate.
Initializes the Resample transform.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sampling_rate
|
float | dict[str, float]
|
Target sampling rate for time series features. If a float is provided, all possible time series features will be resampled. Alternatively, a dictionary can be provided where the key is the feature and the value is the target sample rate. |
required |
interpolation_method
|
InterpolationMethod
|
The interpolation method to use. Supported are "linear" and "cubic", with the default being "linear". |
'linear'
|
Source code in src/flowcean/transforms/resample.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|