Skip to main content

source

BaseTargetTransform

Base class used for target transformations.
source

Differences

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

source

AutoDifferences

Find and apply the optimal number of differences to each serie.
source

AutoSeasonalDifferences

Find and apply the optimal number of seasonal differences to each group.
source

AutoSeasonalityAndDifferences

Find the length of the seasonal period and apply the optimal number of differences to each group.

source

LocalStandardScaler

Standardizes each serie by subtracting its mean and dividing by its standard deviation.

source

LocalMinMaxScaler

Scales each serie to be in the [0, 1] interval.

source

LocalRobustScaler

Scaler robust to outliers.

source

LocalBoxCox

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

source

GlobalSklearnTransformer

Applies the same scikit-learn transformer to all series.