| 1 | /*! |
|---|---|
| 2 | The data processing module, which implements algorithms related to visualization of data. |
| 3 | Such as, down-sampling, etc. |
| 4 | */ |
| 5 | |
| 6 | mod data_range; |
| 7 | pub use data_range::fitting_range; |
| 8 | |
| 9 | mod quartiles; |
| 10 | pub use quartiles::Quartiles; |
| 11 | |
| 12 | /// Handles the printing of floating-point numbers. |
| 13 | pub mod float; |
| 14 |
