peroxide 0.41.2

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with familiar syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate peroxide;
use peroxide::fuga::*;

#[test]
fn test_print() {
    let mut df = DataFrame::new(vec![]);
    df.push("x", Series::new(vec![1]));
    df.push("y", Series::new(vec![true, false]));
    df.push("z", Series::new(seq(0, 10, 0.01)));

    df.print();
}