Tagged Questions
1
vote
2answers
104 views
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 ...
1
vote
1answer
345 views
box-and-whisker plot with variable width in gnuplot?
I'm trying to visualize a data set I have (in Java, but that doesn't matter much) using gnuplot. I could ask a few different questions about this, but for now: Suppose my data is categorical, and for ...
2
votes
1answer
213 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
252 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 ...
1
vote
2answers
91 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 ...
0
votes
1answer
97 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 = ...
0
votes
1answer
293 views
Plotting horizontal lines across histogram bars
I have an experiment where I measured the performance of some algorithms relative to three baselines. I'd therefore like to plot histograms for the algorithms, with horizontal lines of various styles ...
0
votes
2answers
363 views
eigenvectors & values to plot 2d stress vector field
I intended to plot a 2d stress field. What I have in hand are 2 eigenvectors and the respective 2 eigenvalues of 2D stress tensor field for all the particles in system. I am afraid that I could not ...
1
vote
1answer
103 views
Advanced gnuplot terminals and softwares
I am definitely puzzled by the capabilities of the existing terminals for gnuplot (wxt, ...). It's quite impossible to edit quickly the chart on the interface (change color of one curve, hide one ...
2
votes
2answers
1k views
how to draw guide lines on a gnuplot generated cdf?
At work have a set of floating point values that I sort and compute a CDF for and plot within gnuplot. I'd like to draw a line showing where the 80% and 90% thresholds of the CDF are, i.e. a line ...
1
vote
1answer
342 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 ...
5
votes
2answers
2k views
How to display a stacked barchart in Gnuplot?
I have a data file that looks a bit like this:
A 0.2 0.5
B 0.65 0.8
C 0.4 0.2
i.e., it contains three columns where the first column contains labels and the other two columns float values. ...
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 ...
0
votes
2answers
2k views
Graph drawing library for Flash
I have a bunch of numeric stats data gathered over time.
I need to show it as a line graph to user in a HTML page. I want to render graph on client. It would be perfect if graph would be interactive ...