1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

//! LumberJack is a crate is a lightweight alternative to Python's
//! "Pandas" package.
//! 
//! Its main intention is to have a Python wrapper, but feel free
//! to make use of it in other settings!
//! 
//! # Examples
//! 
//! ```
//! 
//! ```

extern crate ndarray;
extern crate num;
extern crate libc;

#[macro_use]
pub mod macros;

#[cfg(test)]
mod tests;

pub mod series;
pub mod dataframe;
pub mod prelude;
pub mod alterations;
pub mod containers;

pub use macros::*;
pub use containers::*;
pub use series::*;