Module boxplot

Module boxplot 

Source
Expand description

Box plot implementation

Box plots (box-and-whisker plots) display distribution statistics: minimum, first quartile (Q1), median (Q2), third quartile (Q3), and maximum.

§Examples

let data = vec![1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0];
let boxplot = BoxPlot::new(data)
    .color(Color::from_hex("#3498db").unwrap())
    .label("Sample Data");

Structs§

BoxPlot
Box plot for displaying distribution statistics

Enums§

OutlierMethod
Method for detecting outliers