plotters
plotters copied to clipboard
A rust drawing library for high quality data plotting for both WASM and native, statically and realtimely 🦀 📈🚀
Hello, how would you extract the following code into its own function? ```rust chart .draw_series(LineSeries::new( (-100..100) .map(|y| y as f64 / 40.0) .map(|y| ((y * 10.0).sin(), y, (y * 10.0).cos())),...
Chrono now - 0.4.20 - has localtime_r RIR that has addressed the past security issue around it :partying_face: We've updated here: https://rustsec.org/advisories/RUSTSEC-2020-0159.html
### What is the feature? Make `plotters::series::Histogram` can handle multiple data sets like in **matplotlib** ([examples](https://matplotlib.org/stable/gallery/statistics/histogram_multihist.html)) ### Why this feature is useful and how people would use the feature? This...
I've been using `plotters` in a situation where caring about system fonts is unimportant, and having `font-kit` in my dependency tree has been causing me unnecessary problems. This PR introduces...
Basically: This is #140 again. According to git history, commit https://github.com/plotters-rs/plotters/commit/993d9a0f893b1227ea4379967533ecf64de38f14 raised the MSRV and was released in v0.3.2. v0.3.1 still had `edition="2018"` according to https://github.com/plotters-rs/plotters/blob/v0.3.1/Cargo.toml#L5 CC https://github.com/psychon/x11rb/issues/739
**Describe the bug** Got panic `thread 'main' panicked at 'attempt to subtract with overflow', [...]\plotters-0.3.2\src\coord\ranged1d\discrete.rs:148:56` when trying to draw a graph with discrete axes and flipped y-axis. I expected to...
### What is the feature ? [Vega-Lite](https://vega.github.io/vega-lite/) is a high level grammar for interactive graphics. While the interactive features might be beyond the scope of this project, it is also...
The crates that are published to crates.io no longer contain LICENSE files since the latest release. I assume this change happened by accident when moving around crates / files inside...
When trying to view the real-time plotting example, it appears to have been deleted... What gives? Is this functionality not available anymore? "The 'plotters-rs/plotters-piston' repository doesn't contain the 'plotters/examples/cpustat.rs' path...
### What is the feature ? It would be nice to have gradient fill if I want more distiguishable background color. I wrote my version as a free function by...