Tagged Questions
0
votes
0answers
50 views
Plotting graphs to multiple files in python using gnuplot.py
I would like to ask for any hint. My goal is gif video of plotting my graph. I have config file in format:
1 2009/05/11 07:31:00 0.00999983333416666468
2 2009/05/11 07:32:00 0.01999866669333307936
...
0
votes
3answers
53 views
Using gnuplot to generate a set of numbered images
I'm a newbie in Python and I would like to ask you, how can I get images (a lot of images) made by Gnuplot.py with variable in name? I have this function, which creates single image:
def ...
0
votes
0answers
58 views
grid.py get no rate on dataset
I am trying to run grid.py on libsvm-3.17 using some dataset. I am using the command
python grid.py -log2c -5,12,1 -log2v -12,5,1 -v 5 -m 300 <dataset>
Instructions over here. But the ...
3
votes
2answers
106 views
Plotting with data which occurs periodically
I have a data file:
######## Test at 123.45 start ########
######## File: abc.xyz ########
cores, pass_rate(actual), pass_rate(given)
1,7193,7210
2,10651,28840
4,10651,28840
8,10651,28840
######## ...
0
votes
1answer
63 views
python gnuplotpy with datetime
I've been trying to print following data with gnuplot.py:
data = [[datetime.datetime(2013, 1, 15, 17, 45), 16.00], [datetime.datetime(2013, 1, 16, 17, 45), 15.98], [datetime.datetime(2013, 1, 17, 17, ...
0
votes
1answer
75 views
Plotting an 'average' graph of 5 graphs
Suppose,
I have some data-points which define 5 different graphs like in the picture below.
How can I draw an average graph of these over the values of the y axis ?
I can not do it directly because ...
0
votes
1answer
225 views
Fitting data to an equation in python vs gnuplot
I am trying to fit some data to an equation in python and I am having some difficulty. I have the equation:
y(t)=yo+a(t-ti)^b+kt
where a, ti, b and k are fitting parameters, and t and disp are ...
2
votes
1answer
165 views
Setting line type in GnuplotPy?
In Gnuplot, the linetype or lt flag allows the user to select the line type (dashed, dotted, solid, etc).
I'm using a Python wrapper called Gnuplot-Py. Here's an example:
import Gnuplot
data1 = [[3, ...
3
votes
1answer
227 views
Changing bar color in GnuplotPy histograms?
I'm plotting some histograms with GnuplotPy, and I'd like to change the color of the histogram bars. (By default, the bars are red.) The answers in this StackOverflow post gave several options for how ...
0
votes
1answer
82 views
Newline in Gnuplot-Py?
I'm using the GnuplotPy interface to use Gnuplot from inside of Python. I've found that GnuplotPy complains when I have a newline in a GnuplotPy call. For example:
import Gnuplot
gp = ...
4
votes
1answer
1k views
Sublime Text2 Import error: No module named Gnuplot
I'm trying to use Gnuplot in a Python script I'm writing in Sublime Text. Whenever I build, I get the error message
Traceback (most recent call last):
File "..." line 4, in <module>
...
1
vote
1answer
552 views
python gnuplot read from file
i have a file with the following data the first field is UNIXTimestamp,
1351734672.095 25
1351734674.449 52
1351734676.638 612
1351734680.669 44
1351734681.121 16
1351734684.182 15
1351734684.386 17
...
7
votes
1answer
211 views
Histogram of an Image's “Black Ink Level” by Horizontal Axis
I have a black and white image (or pdf) file, and want to get a histogram of the image's horizontal profile. That is, for each column in the image I want the sum of the grayscale values of the pixels ...
1
vote
3answers
156 views
how to use python/matplotlib to plot data with blank line inbetween
I have a single data file that looks like this
#X Y
1 23.2
2 24.01
3 67.34
4 68.90
#
1 7.87
2 6.90
3 5.78
4 7.89
Note the gap between the lines.
In my ...
2
votes
1answer
72 views
Error using gnuplot from within Sage, but works fine in regular Python
I apologize if this isn't the best place to ask this question, but hopefully someone here can help. I want to run some gnuplot commands directly from within a Sage script, but I get the following ...
0
votes
1answer
161 views
Missing pgnuplot
I'm trying to use gnuplot.py through cygwin, but it looks like I need to install pgnuplot (I get "/bin/sh: pgnuplot.exe: command not found" trying to run the demo.py file).
The README provides an ftp ...
0
votes
2answers
92 views
python reach and replace multiple lines and arithmetic
I try to convert an postscript file such that individual, adjacent polygons (drawn by gnuplot's filledcurve mode) are converted to one single polygon. See also this related question:
gnuplot ...
0
votes
1answer
204 views
python: Gnuplot - variable parameter in 'set key' (for example)
I want to:
for datafile in glob.glob('*.dat' )
d = Gnuplot.File(datafile, using='1:2', with_='l', title=datafile)
g("set key at xpos, [y variable position])
g.plot(d)
The [y variable ...
0
votes
1answer
465 views
Continuously updating a plot from a C++ program (animation?)
I have a C++ program that continuously update a graph (add/delete edges and vertices). Is it possible to plot the manipulated graph using gnuplot (using arrow command) from my C++ program and update ...
0
votes
0answers
216 views
Gnuplot v 4.4: random data point inserted during plot
-----EDIT----- added sample data and a full simplified python code which produces the same error.
In about a third of my plots I generate from the same code but different data I obtain a skewed data ...
0
votes
1answer
998 views
gnuplot: line 1: invalid command
Hello All you Lovely People on stackoverflow,
I am trying to plot data using gnuplot. I start by reading through a table and pulling out the data I want. I write this data to a .dat file. As of now, ...
0
votes
2answers
91 views
Save commands sent over to the gnuplot program by Gnuplot-py package
I am new to gnuplot. I am using Unix.
I see the commands/error and their output on the terminal but I want to save them on a file too for storage purposes.
There is a save command in gnuplot but it ...
2
votes
1answer
1k views
Transparent background in gnuplot multiplot
I'd like to get a transparent background in my gnuplot figure.
What I coded till now is:
#! /usr/bin/python
from numpy import *
import Gnuplot as gp
import Gnuplot.funcutils
x = (1,2,3)
y=(2,4,5)
...
-1
votes
1answer
866 views
Multiplot in Gnuplot via Python
I'd like to get three charts, one under one, using multiplot.
I tried:
#! /usr/bin/env python
from numpy import *
import Gnuplot as gp
import Gnuplot.funcutils
x = (1,2,3)
y=(2,4,5)
x1 = (3,6,8)
g ...
1
vote
2answers
299 views
Continuos,size-fixed, transparent graph in Gnuplot
Starting from this:
#!/usr/bin/env python
from numpy import *
import Gnuplot as gp
import Gnuplot.funcutils
x = (1,2,3)
y=(2,4,5)
g = gp.Gnuplot()
d = gp.Data(x,y,with_="lines",title='Graph')
...
1
vote
1answer
309 views
GNUplot 4.2 syntax errors when trying to use set style line
I have been searching all over the internet for an answer to this.
It seems there are many versions of how to plot color lines in gnuplot.
I have a data file that has 4 columns in it. I want to plot ...
0
votes
1answer
601 views
Gnuplot: line 0: function to plot expected
I've a python script who generate a graphic with gnuplot. But I've an error:
gnuplot> plot
^
line 0: function to plot expected
g=Gnuplot.Gnuplot(persist=1)
...
0
votes
1answer
302 views
Gnuplot python with 2 list
I've a python script that gives me 2 lists and another who is the reference(the time).
How can I create a graphic with the representation of my first list by the time. And same question for the second ...
0
votes
2answers
292 views
How to code a graph drawing utility in linux
I am working on a project in which I have to develop a tool which can plot data traffic on various nodes on my network. I can't use Xgraph or Gnuplot since I myself have to create a tool. I have a ...
1
vote
1answer
377 views
gnuplot-py error with datetime chart
I tried to plot chart with datetime x axis:
here is example of the code:
#!/usr/bin/python2.7 -tt
# coding: utf-8
import Gnuplot
from datetime import datetime
out_file = ...
0
votes
1answer
358 views
gnuplot-py can't build chart with date-time axis
i use gnuplot-py and i want to plot chart with date time axis. i used gnuplot by itself and work fine.
here is example of a code:
import Gnuplot
out_file = 'cpu.png'
out_file_str = 'set out ...
0
votes
1answer
417 views
gnuplot to gnuplot.py
Can somebody help me convert this gnuplot command to gnuplot.py
gnuplot command(works fine in gnuplot interpreter):
plot 'immigration.dat' using 2:xtic(1) ti col, '' u 3 ti col, '' u 4 ti col, '' u ...
0
votes
1answer
901 views
How to plot/display “.dat” files using gnuplot?? [Python]
I'm currently trying to plot my data using gnuplot. I have several .dat files in a folder, and I wish to plot all my data using some simple command/script.
Can anybody help me with this? OR any ...
1
vote
1answer
181 views
dynamic gnuplot with slot specific info display
Can I use gnuplot to generate a plot as shown in image (drawn with dia).
I am receiving 3 types of packets and need to plot their timeline. All slots begin with a beacon, any 1 of the other 2 ...
0
votes
3answers
288 views
os.system() failing in python
I'm trying to parse some data and make graphs with python and there's an odd issue coming up. A call to os.system() seems to get lost somewhere.
The following three lines:
os.system('echo foo bar')
...
3
votes
1answer
290 views
gnuplot linecolor variable in matplotlib?
I have an array of y-values that form a line. Additionally, I have an array with the same number of elements as the y-array of values ranging from 0 to 1. We'll call this array 'z'. I want to plot the ...
4
votes
2answers
618 views
Gnuplot (or matplotlib): create non-bar chart with categories on x-axis
I would like to create a graph like this one using gnuplot (or matplotlib, if need be), but I don't know if/how it can be done:
This, of course, is just a rough sketch. What is important is that I ...
4
votes
2answers
6k views
Short guide how to use gnuplot with python?
I'm trying to draw a graph in Python, using Gnuplot. I have a hard time finding any guide/tutorials how to start.
What I'm wondering: what files/programs are necessary?(I'm using Ubuntu), Where do I ...
1
vote
2answers
770 views
Make pyplot faster than gnuplot
I recently decided to give matplotlib.pyplot a try, while having used gnuplot for scientific data plotting for years. I started out with simply reading a data file and plot two columns, like gnuplot ...
0
votes
1answer
224 views
Plotting points on Image using gnuplot.py
Is there a way to plot some points on an image using Gnuplot.py .
I have a text file containing the co-ordinates of the point which i want to plot on an image(as a background.)
5
votes
2answers
1k views
Standard error in non-linear regression
I have been doing some Monte Carlo physics simulations with Python and I am in unable to determine the standard error for the coefficients of a non-linear least square fit.
Initially, I was using ...
0
votes
1answer
316 views
plotting multiple (x,y) co-ordinates in a single curve with gnuplot
Hi I want to plot multiple (x,y) coordinates in a single graph. Say I have a data file which has the contents like the following:
x y
0.0 0.5
0.12 0.1
0.16 0.4
0.2 0.35
0.31 0.8
...
0
votes
1answer
110 views
saving multiple outputs in different files
I have a program which generates several plots.. Now I need to save each plot in a different file like say: file1, file2, file2,...
P.S: I am using Gnuplot to save and generate the plots:
g('set ...
1
vote
1answer
2k views
Plotting lines with gnuplot python
I have a list:
x = [1,2,3,4]
Now using gnuplot, I have plotted the points as (0,1), (1,2), ...
Here is the syntax I used:
g = Gnuplot.Gnuplot()
g.plot(x)
Now I have my required set of points ...
2
votes
3answers
676 views
Gnuplot sending newline and “,\” from python
Normally when using interactively gnuplot I do:
gnuplot> plot "state_log_6548032.data" using 4 with lines lt -1 lw 0.5 title "X axis" ,\
>"state_log_6548032.data" using 5 with lines lt 1 lw 0.5 ...
0
votes
2answers
745 views
Python subprocess: how to pipe to gnuplot a command to plot a variable?
I am not trying to do anything fancy here. I am trying to automate plotting some experiment data in the following script:
print "processing: ", filename
gnuplot = Popen(gnuplot_bin,stdin = ...
1
vote
1answer
754 views
File input to gnuplot through python
I am trying to draw a graph of some data I pull out of a MySQL database through python with gnuplot and gnuplot.py.
I read the latest 10 lines of data from the MySQL database and store them in a temp ...
1
vote
1answer
800 views
Python + GNU Plot: dealing with missing values
For clarity I have isolated my problem and used a small but complete snippet to describe it.
I have a bunch of data but there is a lot of missing pieces. I want to ignore these (a break in the graph ...
3
votes
3answers
3k views
gnuplot alternative with higher time precision
At present I'm using gnuplot to plot data against a time line. However the precision of the time line is in milliseconds but gnuplot only seems to be able to handle seconds.
I've looked at a couple ...
0
votes
1answer
1k views
python gnuplot.plot command fails on string input command
in the gnuplot command line you can, for instance, do
gnuplot> plot "fileA.dat" using 1:2 title 'data A', \
"fileB.dat" using 1:3 title 'data B'
using python gnuplot.py, the ...

