plt

CI Crates.io docs.rs dependency status

A plotting library with a focus on publication level aesthetics and ergonomic control.

Structure

Use

To get started, see the examples directory in the main repository.

Example

```rust use plt::*;

// create data let xs: Vec = (0..=100).map(|n: u32| n as f64 * 0.1).collect(); let ys: Vec = xs.iter().map(|x| x.powi(3)).collect();

// create subplot let mut sp = Subplot::builder() .label(Axes::X, "x data") .label(Axes::Y, "y data") .build();

// plot data sp.plot(&xs, &ys).unwrap();

// make figure and add subplot let mut fig =

::default(); fig.set_layout(SingleLayout::new(sp)).unwrap();

// save figure to file fig.draw_file(FileFormat::Png, "example.png").unwrap(); ```

Simple Example

Dependencies

Currently, the only implemented backend depends on Cairo.

Debian / Ubuntu

apt install libcairo2-dev

Arch

pacman -Syu cairo