plotlars 0.12.0

Plotlars is a Rust library designed to facilitate the integration between the Polars data analysis library and visualization libraries.
1
2
3
4
5
6
7
8
9
10
11
12
13
use plotlars::{Axis, Image, Plot};

fn main() {
    let axis = Axis::new().show_axis(false);

    Image::builder()
        .path("data/image.png")
        .x_axis(&axis)
        .y_axis(&axis)
        .plot_title("Image Plot")
        .build()
        .plot();
}