Parameter estimation#
The sktime.param_est module contains parameter estimators, e.g., for
seasonality, and utilities for plugging the estimated parameters into other estimators.
For example, seasonality estimators can be combined with any seasonal forecaster
to an auto-seasonality version.
All parameter estimators in sktime can be listed using the
sktime.registry.all_estimators utility,
using estimator_types="param_est", optionally filtered by tags.
Valid tags can be listed using sktime.registry.all_tags.
Module for parameter estimators and parameter estimator plugin composition.
Parameter estimators#
Composition#
|
Pipeline of transformers and a parameter estimator. |
|
Plugs parameters from a parameter estimator into a forecaster. |
Naive#
|
Dummy parameter estimator that writes fixed values to self. |
Seasonality estimators#
|
Find candidate seasonality parameter using autocorrelation function CI. |
|
Find candidate seasonality parameter using autocorrelation function LB q-stat. |
|
Score periodicities by their spectral power. |
Stationarity estimators#
|
Test for stationarity via the Augmented Dickey-Fuller Unit Root Test (ADF). |
|
Test for stationarity via the Kwiatkowski-Phillips-Schmidt-Shin Test. |