BaseTargetTransform
Bases: ABC
Base class used for target transformations.
Differences
_BaseGroupedArrayTargetTransform
Subtracts previous values of the serie. Can be used to remove trend or seasonalities.
AutoDifferences
_BaseGroupedArrayTargetTransform
Find and apply the optimal number of differences to each serie.
Parameters:
AutoDifferences.inverse_transform_fitted
Returns:
Raises:
AutoSeasonalDifferences
AutoDifferences
Find and apply the optimal number of seasonal differences to each group.
Parameters:
AutoSeasonalDifferences.inverse_transform_fitted
Returns:
Raises:
AutoSeasonalityAndDifferences
AutoDifferences
Find the length of the seasonal period and apply the optimal number of differences to each group.
Parameters:
Raises:
AutoSeasonalityAndDifferences.inverse_transform_fitted
Returns:
Raises:
LocalStandardScaler
Bases: _BaseLocalScaler
Standardizes each serie by subtracting its mean and dividing by its standard deviation.
LocalMinMaxScaler
Bases: _BaseLocalScaler
Scales each serie to be in the [0, 1] interval.
LocalRobustScaler
_BaseLocalScaler
Scaler robust to outliers.
Parameters:
LocalBoxCox
_BaseLocalScaler
Finds the optimum lambda for each serie and applies the Box-Cox transformation
GlobalSklearnTransformer
BaseTargetTransform
Applies the same scikit-learn transformer to all series.

