strafe-plot 0.1.1

Statistical plotting for Rust statistics based on R
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use plotters::prelude::*;

pub use crate::{
    drawing_coords::DrawingCoords,
    model_plot::ModelPlot,
    plot::Plot,
    plot_options::PlotOptions,
    plottable::{
        confidence_interval::ConfidenceInterval, horizontal_line::HorizontalLine, line::Line,
        points::Points, vertical_line::VerticalLine, Plottable,
    },
    stem_leaf::stem_leaf_plot,
};