1/// Statistical functions 2pub mod stats; 3 4/// Smoothing functions 5pub mod smoothing; 6 7mod error; 8/// Error type for `quant_mathema` 9pub use error::Error; 10 11/// Transformation functions 12pub mod transforms;