brassfibre 0.2.0

Provides multiple-dtype columner storage, known as DataFrame in pandas/R
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate csv;
extern crate num;
// extern crate rayon;
extern crate nullvec;

mod algos;
mod block;
mod formatting;
mod frame;
mod groupby;
mod indexer;
mod io;
#[macro_use]
mod macros;
mod series;
mod traits;

pub mod prelude;