aboutsummaryrefslogtreecommitdiff
path: root/src/data/mod.rs
blob: a6b9038948dda2d726f1f85df3f3d950404452eb (plain)
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;