RustGnuplot
RustGnuplot copied to clipboard
A Rust library for drawing plots, powered by Gnuplot.
I'm trying to use version 0.0.20 of rustgnuplot through Cargo, and when I try to `cargo run` the program through my Terminal I get this error: ``` thread '' panicked...
This is great. However I ran into a problem where I have to call `Axes2D.points()` n times, where n is known only at runtime. I can't figure out how to...
I want to store figure to a file and then pipe it to gnuplot to show the figure. figure.show() method works well. But when I pipe the file that I...
I wonder if it's possible to move the captions around? In gnuplot that would be "set key left top". cf. http://stackoverflow.com/questions/12208054/gnuplot-legend-overlaps-graph
Resizing the graph should be as simple as "set term pbm size 600, 400" if I'm reading the [docs](http://gnuplot.sourceforge.net/docs_4.2/node31.html) right. But I wasn't able to find something like that in...
Does this library allow for multiplotting? I tried to figure it out and well...I couldn't.
Hi, What's the relationship between RustGnuplot and Gnuplot ? Does RustGnuplot supports all the plots of Gnuplot ? Where can I find the tutorials on RustGnuplot ?
Is it currently possible to plot lines with [smoothing](http://gnuplot.info/docs_5.5/loc8307.html)? I did not find this functionality exposed in `PlotOptions`. [`ContourStyle`](https://docs.rs/gnuplot/latest/gnuplot/enum.ContourStyle.html) is somewhat close but it seem to be only used in...
Is there any way to use the "palette as line color" functionality built into gnuplot with this crate? I need to change the color of a line based off of...
Hi, Could you please advice how can I achieve with RustGnuplot a linear regression's of [gnuplot](https://weinman.cs.grinnell.edu/courses/CSC213/2008F/labs/10-pingpong-regression.pdf) . Many thanks in advance.