plotlib 0.3.0

Plotting data structures and tools
Documentation
extern crate plotlib;

use plotlib::style::Bar;

fn main() {
    let data = [0.3, 0.5, 6.4, 5.3, 3.6, 3.6, 3.5, 7.5, 4.0];
    let h = plotlib::histogram::Histogram::from_vec(&data, 10)
        .style(plotlib::histogram::Style::new().fill("olive"));
    let v = plotlib::view::View::new().add(&h);
    plotlib::page::Page::single(&v).save("histogram.svg");
}