rust-ndarray / ndarray-stats

Statistical routines for ndarray
https://docs.rs/ndarray-stats
Apache License 2.0
201 stars 25 forks source link

Reexport `noisy_float::types::N64` #88

Open metasim opened 2 years ago

metasim commented 2 years ago

Description So that crates using this crate don't have to add it explicitly to their Cargo.toml, it would be convenient to have this crate pub use things like noisy_float::types::N64 since they are required directly by the API, such as with QuantileExt:: quantile_axis_mut:

https://github.com/rust-ndarray/ndarray-stats/blob/b6628c6a1c143532673213c56d46da5fda80cbe8/src/quantile/mod.rs#L208-L213

Version Information

To Reproduce N/A

Expected behavior Not have to add noisy_float to my Cargo.toml when using ndarray-stats::quantile::QuantileExt.