A plotting library with a focus on publication level aesthetics and ergonomic control.
Subplot
].Layout
].Figure
], which is used to draw to a file or [Backend
].To get started, see the Examples directory in the main repository.
```rust // create data //let xs = ...; //let ys = ...;
// create subplot let mut sp = plt::Subplot::builder() .xlabel("x data") .ylabel("y data") .build();
// plot data sp.plot(plt::PlotData::new(&xs, &ys)).unwrap();
// make figure and add subplot
let mut fig =
// save figure to file fig.draw_file(plt::FileFormat::Png, "example.png").unwrap(); ```
The package currently depends on Cairo.
apt install libcairo2-dev
pacman -Syu cairo