PlateauFinder

class sktime.transformations.panel.summarize.PlateauFinder(value=nan, min_length=2)[source]

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

Parameters
  • value ({int, float, np.nan, np.inf}) – Value for which to find segments

  • min_length (int) – 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.

__init__(value=nan, min_length=2)[source]

Initialize self. See help(type(self)) for accurate signature.