mod barplot;
pub mod border;
mod boxplot;
pub mod canvas;
pub mod color;
pub mod graphics;
mod histogram;
mod lineplot;
mod math;
mod plot;
mod render;
pub use barplot::{
BarplotError, BarplotGraphics, BarplotOptions, barplot, barplot_add, parse_border_type,
};
pub use boxplot::{BoxplotError, BoxplotGraphics, BoxplotOptions, boxplot, boxplot_add};
pub use histogram::{ClosedInterval, HistogramError, HistogramOptions, histogram};
pub use lineplot::{
GridCanvas, LineplotError, LineplotOptions, LineplotSeriesOptions, StairStyle, annotate,
densityplot, densityplot_add, lineplot, lineplot_add, lineplot_add_slope, lineplot_add_y,
lineplot_y, scatterplot, scatterplot_add, scatterplot_add_y, scatterplot_y, stairs, stairs_add,
};
pub use plot::{Annotation, DecorationPosition, EdgeDecorations, Plot, PlotAnnotations};
#[cfg(test)]
mod test_util;