solvr 0.2.0-beta.2

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Statistical algorithm traits and types.

mod descriptive;
mod hypothesis;
mod information;
mod regression;
mod robust;
mod types;

pub use descriptive::DescriptiveStatisticsAlgorithms;
pub use hypothesis::HypothesisTestingAlgorithms;
pub use information::InformationTheoryAlgorithms;
pub use regression::RegressionAlgorithms;
pub use robust::RobustStatisticsAlgorithms;
pub use types::{
    LeveneCenter, LinregressResult, RobustRegressionResult, TensorDescriptiveStats,
    TensorTestResult, validate_stats_dtype,
};