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