#plot #plotters #wrapper #high-level #idiomatic #data

complot

An idiomatic high-level wrapper to Rust plotters visualization crate

8 releases

0.3.4 Jul 11, 2023
0.3.3 May 19, 2022
0.3.2 Dec 29, 2021
0.3.1 Oct 31, 2021
0.1.1 Oct 7, 2021

#70 in Visualization

Download history 7/week @ 2023-11-20 8/week @ 2023-11-27 10/week @ 2023-12-04 1/week @ 2023-12-11 5/week @ 2023-12-18 3/week @ 2023-12-25 14/week @ 2024-01-08 10/week @ 2024-01-15 4/week @ 2024-01-29 9/week @ 2024-02-12 12/week @ 2024-02-19 50/week @ 2024-02-26 14/week @ 2024-03-04

85 downloads per month
Used in 11 crates (8 directly)

MIT license

47KB
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

~14MB
~104K SLoC