0
votes
2answers
39 views
+100
Columnstacked histograms in gnuplot from multiple files
I'm trying to use gnuplot to view some profiling data; I have several files, each of the following format:
file_runXX.dat:
elapsed time, stage
elapsed time, stage
For example:
0 foo
1 step_1
1.5 ...
2
votes
1answer
157 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, ...
1
vote
2answers
88 views
Is there any web technology that will let me create a similar visualization?
I'd like to create a timeline of sorts. The following attached picture:
Shows what I am trying to visualize. I'd like a timeline that takes as input events with start and stop times. If the ...
1
vote
2answers
145 views
Gnuplot: (High blood pressure datapoints): Plot two points against time, difference between them
I am newly disgnosed with high blood pressure and need to a) check my bp regularly now and keep a log of it and b) take medicine. You can't help me with b), but I'd need your kind help with a).
I ...
1
vote
1answer
252 views
combining gnuplot with a gui in haskell
Can any one provide an example , or advice as to what would be the best approach for using gnu-plot or something similar from within a Haskell GUI?
0
votes
2answers
2k views
Gnuplot Script for average over multiple files
I have series of measurement in several files. Every file is looking like this:
1 151.973938 144.745789 152.21991 17:57:14
2 151.995697 144.755737 152.21991 17:57:14
3 152.015747 144.765076 152.21991 ...
3
votes
1answer
173 views
how to plot with vectical lines with gnuplot?
I study for sometime but didn't get the answer yet.
The data is like:
#X0, Y0_0, Y0_1
1 1 2
3 2 4
7 1 3
....
I need to draw vectical line from (X0, Y0_0) to (X0, Y0_1). gnuplot has financebar and ...
1
vote
1answer
328 views
Recompute a 3d vector field in a set of isosurfaces
I working on program (fortran90), which computes an magnetic field of some static set of wires with electric current. Its output is a magnetic field vectors in many points as file with columns ...
1
vote
1answer
362 views
Visualization of Nelder-Mead algorithm in gnuplot
does anyone know how I can achieve drawing triangle on level sets of some 3d function (something like on this image in gnuplot? When I tried doing this after reading some tutorials:
gnuplot> set ...
7
votes
3answers
2k views
Visualization from C/C++ via Gnuplot's pipe interface
I am attempting to use the pipe interface to gnuplot (a standard one gnuplot_i.{cpp,hpp}) in order to generate a real time display of values that are continually changing within another program ...