basic_stats 1.0.0

Lightweight library with basic statistical estimators and hypothesis tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core sample statistics and common types.
//!
//! This module is always included.

mod base;
#[cfg(feature = "normal")]
mod check_interval;
mod error;
mod iter;

pub use base::*;
pub use error::*;
pub use iter::*;

#[cfg(feature = "normal")]
pub(crate) use check_interval::*;