zima 0.1.0-alpha.0

An attempt to create a modern package for the needs of applied statistics
Documentation
#![allow(warnings)]
#![allow(unused_variables, dead_code)]

mod math;

mod sample;
mod resample;
mod statistics;
mod quantile;
mod hypothesis;
mod least_squares;
mod display;

pub use math::*;
pub use crate::sample::Sample;
pub use crate::resample::*;
pub use crate::statistics::*;
pub use crate::hypothesis::*;
pub use rand;