arundo / adtk

A Python toolkit for rule-based/unsupervised anomaly detection in time series
https://adtk.readthedocs.io
Mozilla Public License 2.0
1.06k stars 143 forks source link

What is c? #108

Closed Anaisdg closed 4 years ago

Anaisdg commented 4 years ago

Can you please explain what exactly is c (float, optional) – Factor used to determine the bound of normal range based on historical interquartile range. Default: 3.0. ? And is it the same for all functions that use it? Thank you.

tailaiw commented 4 years ago

For detectors that are internally implemented as pipeline or pipenet, c is the parameter of the InterquartileRangeAD detector in the pipe. For details about how the parameter control InterqaurtileRangeAD, you may refer to its documentation.

Anaisdg commented 4 years ago

Thank you!