gnuplotlib
gnuplotlib copied to clipboard
gnuplot for numpy
I suggest adding the topics `gnuplot`, `numpy`, `plot` in the About section at https://github.com/dkogan/gnuplotlib.
Hi, I ve been trying to plot a bar chart with some custom labels. here's the data: ```python data = [[0, 'C1', 3.45], [1, 'C2', 7.282051282051282], [2, 'C3', 9.051282051282051], [3,...
I had some issues running gunplotlib in my terminal interface, the pipe would try to close, fail, and kick me back to bash with an error message. This fixes the...
Today I tried to run an application with gnuplotlib on a Windows machine and had to add following patches to make it start. I still see problems with the polling...
Hi, when I run on windows. It shows: >>> gp.plot( np.linspace(-5,5,30)**2,unset='grid', terminal='dumb 80 40' ) Traceback (most recent call last): File "", line 1, in File "C:\Users\rounan_feng\AppData\Local\Programs\Python\Python38\lib\site-packages\gnuplotlib.py", line 2648, in...
``` gp.plot( np.random.rand(10)*25 + 25, unset='grid', terminal='dumb 80 40', set='arrow from 5,10 to 5,0') ``` Causes the pipe to hang, and give the message: ``` Gnuplot process no longer responding....
On Win10 and Python 3.11 I run the following lines ``` import gnuplotlib as gp import numpy as np x = np.arange(101) - 50 gp.plot(x**2) ``` and get the following...
When a script has a `multiplot`as it's very first plot, the plot produced it's a regular plot, the second plot overwrites the first one withouth any error indication: Let's use...
How to plot realtime (live) data? It would be ideal to have an example.