Contents

Contents
mod.rs - source
1
2
3
4
5
6
7
8
9
10
11
12
13
/*!
The data processing module, which implements algorithms related to visualization of data.
Such as, down-sampling, etc.
*/

mod data_range;
pub use data_range::fitting_range;

mod quartiles;
pub use quartiles::Quartiles;

/// Handles the printing of floating-point numbers.
pub mod float;