RollingQuantile
_RollingBase
Rolling statistic
RollingMax
Bases: _RollingBase
Rolling statistic
RollingMin
Bases: _RollingBase
Rolling statistic
RollingStd
Bases: _RollingBase
Rolling statistic
RollingMean
Bases: _RollingBase
Rolling statistic
SeasonalRollingQuantile
_Seasonal_RollingBase
Rolling statistic over seasonal periods
SeasonalRollingMax
Bases: _Seasonal_RollingBase
Rolling statistic over seasonal periods
SeasonalRollingMin
Bases: _Seasonal_RollingBase
Rolling statistic over seasonal periods
SeasonalRollingStd
Bases: _Seasonal_RollingBase
Rolling statistic over seasonal periods
SeasonalRollingMean
Bases: _Seasonal_RollingBase
Rolling statistic over seasonal periods
ExpandingQuantile
_ExpandingBase
Expanding statistic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | required |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | required |
ExpandingMax
Bases: _ExpandingBase
Expanding statistic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | required |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | required |
ExpandingMin
Bases: _ExpandingBase
Expanding statistic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | required |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | required |
ExpandingStd
Bases: _ExpandingBase
Expanding statistic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | required |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | required |
ExpandingMean
Bases: _ExpandingBase
Expanding statistic
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | required |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | required |
ExponentiallyWeightedMean
_BaseLagTransform
Exponentially weighted average
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
alpha | float | Smoothing factor. | required |
global_ | bool | If True, compute the statistic across all series aggregated by timestamp. Requires all series to end at the same timestamp. Defaults to False. | False |
groupby | Sequence[str] | Column names to group by before computing the statistic. Columns must be static features. Mutually exclusive with global_. Defaults to None. | None |
Offset
_BaseLagTransform
Shift series before computing transformation
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tfm | LagTransform | Transformation to be applied | required |
n | int | Number of positions to shift (lag) series before applying the transformation | required |
Combine
_BaseLagTransform
Combine two lag transformations using an operator
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tfm1 | LagTransform | First transformation. | required |
tfm2 | LagTransform | Second transformation. | required |
operator | callable | Binary operator that defines how to combine the two transformations. | required |

