1
2
3
4
5
6
7
//! Data reduction.

pub mod average;
pub mod histogram;
pub mod table;

pub use self::{average::*, histogram::*, table::*};