normality 3.1.0

A Rust crate for assessing the normality of a data sample.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod anderson_darling;
mod anscombe_glynn;
mod dagostino_k_squared;
mod energy_test;
mod jarque_bera;
mod lilliefors;
pub mod multivariate;
mod pearson_chi_squared;
mod shapiro_wilk;

pub use anderson_darling::anderson_darling;
pub use anscombe_glynn::anscombe_glynn;
pub use dagostino_k_squared::dagostino_k_squared;
pub use energy_test::{EnergyTestMethod, energy_test};
pub use jarque_bera::jarque_bera;
pub use lilliefors::lilliefors;
pub use pearson_chi_squared::pearson_chi_squared;
pub use shapiro_wilk::shapiro_wilk;