#plot #plotters #data #idiomatic

dev complot

An idiomatic high-level wrapper to Rust plotters visualization crate

9 releases

new 0.3.5 Feb 28, 2025
0.3.4 Jul 11, 2023
0.3.3 May 19, 2022
0.3.2 Dec 29, 2021
0.1.1 Oct 7, 2021

#62 in Visualization

34 downloads per month
Used in 12 crates (9 directly)

MIT license

48KB
1K SLoC

COMPLOT: An idiomatic high-level wrapper to Rust plotters visualization crate


lib.rs:

Complot is an idiomatic high-level wrapper to Rust plotters visualization crate. Complot allows to quickly visually inspect data without any other knowledge than the Rust standard library. Complot relies on Rust traits from the standard libray to produce the plots and on a simple tree of structures to configure the plots.

Example

Plotting sine and cosine functions

(0..100).map(|k| {
                  let o = 5.*std::f64::consts::PI*k as f64/100.;
                  let (s,c) = o.sin_cos();
                  (o,vec![s,c])
                 }).collect::<complot::Plot>();

Plotting sine and cosine functions with custom properties

let _: complot::Plot = (
 (0..100).map(|k| {
                    let o = 5.*std::f64::consts::PI*k as f64/100.;
                    let (s,c) = o.sin_cos();
                    (o,vec![s,c])
                   }),
 complot::complot!("sin_cos.svg", xlabel="x label", ylabel= "y label")
                       ).into();

Dependencies

~4.5–6.5MB
~110K SLoC