Back to models
Transformer

PlateauFinder

Plateau finder transformer.

Transformer that finds segments of the same given value, plateau in the time series, and returns the starting indices and lengths.

Quickstart

python
from sktime.transformations.summarize import PlateauFinder

estimator = PlateauFinder(value=nan, min_length=2)

Parameters(2)

value{int, float, np.nan, np.inf}
Value for which to find segments
min_lengthint
Minimum lengths of segments with same value to include. If min_length is set to 1, the transformer can be used as a value finder.