Local
Lag transforms
Built-in lag transformations
source
RollingQuantile
Rolling statistic
source
RollingMax
Rolling statistic
source
RollingMin
Rolling statistic
source
RollingStd
Rolling statistic
source
RollingMean
Rolling statistic
source
SeasonalRollingQuantile
Rolling statistic over seasonal periods
source
SeasonalRollingMax
Rolling statistic over seasonal periods
source
SeasonalRollingMin
Rolling statistic over seasonal periods
source
SeasonalRollingStd
Rolling statistic over seasonal periods
source
SeasonalRollingMean
Rolling statistic over seasonal periods
source
ExpandingQuantile
Expanding statistic
source
ExpandingMax
Expanding statistic
source
ExpandingMin
Expanding statistic
source
ExpandingStd
Expanding statistic
source
ExpandingMean
Expanding statistic
source
ExponentiallyWeightedMean
Exponentially weighted average
Type | Details | |
---|---|---|
alpha | float | Smoothing factor. |
source
Offset
Shift series before computing transformation
Type | Details | |
---|---|---|
tfm | _BaseLagTransform | Transformation to be applied |
n | int | Number of positions to shift (lag) series before applying the transformation |
source
Combine
Combine two lag transformations using an operator
Type | Details | |
---|---|---|
tfm1 | _BaseLagTransform | First transformation. |
tfm2 | _BaseLagTransform | Second transformation. |
operator | Callable | Binary operator that defines how to combine the two transformations. |