PyGnuplot
PyGnuplot copied to clipboard
Python interface to gnuplot
New PyGnuplot version from PyGnuplot import gp f1 = gp() # for each figure a separate instance is created. f1.plot(...) instead of: import PyGnuplot as gp gp.plot(...) Added features: 1....
First of all, thanks for the awesome library PyGnuplot! I got a cryptic error message upon starting python (2.7) and trying to "import PyGnuplot": $ python Python 2.7.13 (default, Aug...
There's a small issue, which is that "gnuplot" isn't a name that works in cmd and popen can't find it. I would suggest having a "gnuplot_adress" at top to make...
While having the --persist flag as a default for GnuPlot is nice, it would be great to be able to turn it off in some situations, along with sending additional...
Sometimes it is required to get the values of variables from gnuplot. For example after: ```gnuplot gnuplot> f(x) = m*x + b gnuplot> fit f(x) 'calibration.data' using 1:2 via m,...
As part of debugging prior issues, I learned a trick to get gnuplot to basically send some info back to me at the end of a command set. This was...
Hello, isn't it possible to close the running gnuplot process via PyGnuplot? By calling it through a subprocess without PyGnuplot it is, but using PyGnuplot I couldn't manage. The background...
``` >>> import PyGnuplot as gp >>> gp.c('plot sin(x)') >>> gp.pdf('graph.pdf') >>> gnuplot> set term pdf enhanced size 14cm, 9cm color solid fsize 12 fname 'Helvetica'; ^ line 0: unrecognized...
First of all, thanks for the library. That is pretty much what I was looking for - a simple interface to gnuplot. However, I was a bit unsatisfied with the...
Hi Ben, For analyzing data, I often run the same python script in parallel, with slightly different parameters. In this case saving the values to be plotted sometimes cause interferences....