statistical-tests-rs 0.1.1

Statistical Tests for Rust
Documentation

statistical-tests-rs

use statistical_tests_rs::mean;

fn main() {
    // Get the mean of an array
    let array: [f64; 4] = [3.4, 6.7, 2.3, 1.1];
    let m = mean(&array);

    println!("{}", m);
}

image