Detector
ZeroChangePoints
Dummy change point detector which detects no change points ever.
Naive method that can serve as benchmarking pipeline or API test.
Detects no change points.
Quickstart
python
from sktime.detection.dummy import ZeroChangePoints
estimator = ZeroChangePointsExamples
>>> import pandas as pd
>>> from sktime.detection.dummy import ZeroChangePoints
>>> X = pd. Series ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ])
>>> d = ZeroChangePoints ()
>>> Xt = d. fit_transform (X)