RustGnuplot
RustGnuplot copied to clipboard
A Rust library for drawing plots, powered by Gnuplot.
Error message is ``` gnuplot> t output "mnd_density.png" ^ line 0: invalid command line 0: warning: Couldn't slurp 8000000 bytes (return was 2194576) multiplot> splot "-" binary endian=little array=(1000,1000) format="%float64"...
Would it be possible to support polar plots? I think the key change is to be able to output `set polar`. Here are some [examples](http://www.gnuplot.info/demo/poldat.html).
Hello, I noticed that, when creating a Figure with two plots (2 rows, 1 colum), the first cell (index 0) seems to disappear during a replot. It is sufficient to...
I wrote a program that uses gnuplot to plot data. After the program terminates normally there will remain a running gnuplot_qt process. The code of the minimum test program is...
The API uses Paths, but we convert to UTF8 before sending to gnuplot. - Need to investigate what gnuplot actually supports (probably it just passes it to C directly, but...
While running the example: ```rust // This file is released into Public Domain. use gnuplot::*; use std::f32; fn main() { let mut fg = Figure::new(); let mut x = vec![];...
rustup 1.19.0 (2af131cf9 2019-09-08) rustc 1.38.0 (625451e37 2019-09-23) ``` This is a silly example of doing an animation... Ctrl-C to quit. thread 'main' panicked at 'called `Result::unwrap()` on an `Err`...
Hello, First, thank you for the crate. Very helpful. I am trying to add symbols in the labels, like, nano, or $\lambda$ symbols. Is this supported currently? I tried doing...
E.g. points with varying size/color etc. The most logical way to do it would be how we did the `boxes_with_size`, but it'll get unwieldy without default/keyword args. Alternatively, `Color` and...
I want to create a plot using gnuplot and directly afterwards read the file and process it further. Something like: ```rust let fpath = Path::new("/tmp/plot.png"); let mut fg = Figure::new();...