Skip to main content

BaseTargetTransform

Bases: ABC Base class used for target transformations.

Differences

Bases: _BaseGroupedArrayTargetTransform Subtracts previous values of the serie. Can be used to remove trend or seasonalities.

AutoDifferences

Bases: _BaseGroupedArrayTargetTransform Find and apply the optimal number of differences to each serie. Parameters:

AutoDifferences.inverse_transform_fitted

Inverse transform fitted values. Reverses the differencing transformation by reconstructing the original values from the differenced fitted values. This is used when fitted=True to restore the fitted predictions to the original scale. Parameters: Returns: Raises:

AutoSeasonalDifferences

Bases: AutoDifferences Find and apply the optimal number of seasonal differences to each group. Parameters:

AutoSeasonalDifferences.inverse_transform_fitted

Inverse transform fitted values. Reverses the differencing transformation by reconstructing the original values from the differenced fitted values. This is used when fitted=True to restore the fitted predictions to the original scale. Parameters: Returns: Raises:

AutoSeasonalityAndDifferences

Bases: AutoDifferences Find the length of the seasonal period and apply the optimal number of differences to each group. Parameters: Raises:

AutoSeasonalityAndDifferences.inverse_transform_fitted

Inverse transform fitted values. Reverses the differencing transformation by reconstructing the original values from the differenced fitted values. This is used when fitted=True to restore the fitted predictions to the original scale. Parameters: 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

Bases: _BaseLocalScaler Scaler robust to outliers. Parameters:

LocalBoxCox

Bases: _BaseLocalScaler Finds the optimum lambda for each serie and applies the Box-Cox transformation

GlobalSklearnTransformer

Bases: BaseTargetTransform Applies the same scikit-learn transformer to all series.