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 |
#67 in Visualization
52 downloads per month
Used in 11 crates
(8 directly)
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
~4.5–6.5MB
~106K SLoC