datarust-profile 0.2.0

One-call data profiling and quality reports for the datarust ecosystem
Documentation
1
2
3
4
5
6
7
8
//! Dataset and column profiling.

pub mod column;
pub mod dataset;
pub(crate) mod distribution;

pub use column::{CategoricalStats, ColumnProfile, FiveNumber, Histogram, NumericStats};
pub use dataset::DatasetProfile;