hrv_algos/preprocessing/
mod.rs

1
2
3
4
5
6
//! This module contains submodules for preprocessing tasks in HRV algorithms.
//!
//! The `noise` submodule provides functionalities to add noise to quantised data.
//! The `outliers` submodule offers tools to detect and manage outliers in the dataset.
pub mod noise;
pub mod outliers;