Back to models
Detector

ZeroAnomalies

Dummy anomaly detector which detects no anomalies ever.

Naive method that can serve as benchmarking pipeline or API test.

Detects no anomalies.

Quickstart

python
from sktime.detection.dummy import ZeroAnomalies

estimator = ZeroAnomalies

Examples

>>> import pandas as pd
>>> from sktime.detection.dummy import ZeroAnomalies
>>> X = pd. Series ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ])
>>> d = ZeroAnomalies ()
>>> Xt = d. fit_transform (X)