anomaly_detection 0.4.0

Time series anomaly detection for Rust
Documentation
#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "no_std", no_std)]

extern crate alloc;

mod detect_anoms;
mod detector;
mod error;
mod params;
mod result;

pub use detector::AnomalyDetector;
pub use error::Error;
pub use params::{AnomalyDetectionParams, Direction};
pub use result::AnomalyDetectionResult;

/// Creates a new set of parameters.
pub fn params() -> AnomalyDetectionParams {
    AnomalyDetectionParams::new()
}