Skip to content

zvezdochiot/AnomalyDetectionCpp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnomalyDetectionCpp

DOI

Current methods for anomaly detection

  • Three-sigma rule.
  • Median absolute deviation.

Build

mkdir build
cd build
cmake ..
make

Usage

  • Three-sigma rule (global mean/variance):

    ./AnomalyDetectionCpp example.csv tsg
    
  • Three-sigma rule (rolling mean/variance):

    ./AnomalyDetectionCpp example.csv tsr 15
    
  • Median absolute deviation:

    ./AnomalyDetectionCpp example.csv mad
    

About

Simple anomaly detection for univariate time series data.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 90.4%
  • CMake 9.6%