plotters-statistical 0.1.0

Statistical chart primitives (box, violin, ROC, PR, regularization-path, residual) as native plotters series
Documentation
//! `plotters`-facing series types.
//!
//! Each type is a composite element implementing
//! [`Drawable`](plotters::element::Drawable) +
//! [`PointCollection`](plotters::element::PointCollection), following the same
//! pattern as `plotters`' built-in `CandleStick`, so it drops straight into
//! [`draw_series`](plotters::chart::ChartContext::draw_series).

pub mod box_plot;
pub mod calibration_curve;
pub mod ecdf;
pub mod gain_chart;
pub mod heatmap;
pub mod precision_recall_curve;
pub mod qq_plot;
pub mod regularization_path;
pub mod residual_plot;
pub mod roc_curve;
pub mod violin_plot;

pub use box_plot::{BoxPlot, BoxPlotSeries, BoxStyle};
pub use calibration_curve::CalibrationCurve;
pub use ecdf::Ecdf;
pub use gain_chart::{GainChart, GainMode};
pub use heatmap::{Heatmap, HeatmapAnnotation};
pub use precision_recall_curve::PrecisionRecallCurve;
pub use qq_plot::QqPlot;
pub use regularization_path::{RegLine, RegularizationPath};
pub use residual_plot::ResidualPlot;
pub use roc_curve::RocCurve;
pub use violin_plot::{ViolinPlot, ViolinPlotSeries, ViolinStyle};