Crate plotpy[][src]

Expand description

Rust plotting library using Python (Matplotlib)

Examples

use plotpy::*;
let x = &[1.0, 2.0, 3.0, 4.0, 5.0];
let y = &[1.0, 4.0, 9.0, 16.0, 25.0];
let mut plt = Plot::new();
plt.scatter(x, y);
plt.save("/tmp/plotpy", "example", "svg");

Structs

Constants

Functions

Writes a python file and call python3 on it