velociplot 0.1.0

Fast, publication-quality scientific plotting library - Quick, precise, and deadly effective
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Data integration modules
//!
//! Support for creating Series from various data sources like ndarray, polars, etc.

#[cfg(feature = "ndarray-support")]
pub mod ndarray;

#[cfg(feature = "ndarray-support")]
pub use self::ndarray::*;

#[cfg(feature = "polars-support")]
pub mod polars;

#[cfg(feature = "polars-support")]
pub use self::polars::*;