rustplotlib
rustplotlib copied to clipboard
A Rust's binding of matplotlib
Results
2
rustplotlib issues
Sort by
recently updated
recently updated
newest added
The `xlabel` and `ylabel` command does not add a label on the axis. The example in the readme also shows this.
```rust #[derive(Matplotlib)] #[mpl(title="Sine curve", xlabel="Time[sec]", legend="upper right")] struct PlotData { #[mpl(xaxis)] xdata: Vec, #[mpl(yaxis(label="sin(x)"))] ydata1: Vec, #[mpl(yaxis(label="cos(x)"))] ydata2: Vec, } fn main() { let plot_data = PlotData::new(); let fig =...
backlog
feature-request