0
votes
1answer
138 views

Creating a stacked histogram

I have this data file: A 169 164 164 102 150 100 145 B 145 107 115 120 140 I want to create a stacked histogram out of it. I'd like to set a range ...
0
votes
1answer
190 views

Fitting data smoothly in Matlab and Gnuplot

I would like to find a better way of fitting my data. Right now, that it the best I can do, see Figure. It's done using Gnuplot and smooth when plotting. However, as you might see in the Figure, ...
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 ...
0
votes
1answer
52 views

Online graphing

I need some sort of tool for plotting a continuous stream of data. In other words, I have a program, let's call it A, that runs a simulation and outputs a continuous stream of numbers. Because A is ...
1
vote
0answers
213 views

Can anybody help me on quantile-quantile script (q-q plot)? [closed]

How to plot quantile-quantile plot from the scratch? I am not sure if each point is calculated using ratio of the points from two series at the same given quantile. But why sometimes, I can see there ...
1
vote
2answers
802 views

plotting matrices with gnuplot

I am trying to plot a matrix in Gnuplot as I would using imshow in Matplotlib. That means I just want to plot the actual matrix values, not the interpolation between values. I have been able to do ...
0
votes
1answer
2k views

gnuplot data interpolation method for smoothing of data

Friends, i have some vast amount of data to be printed on a graph using gnuplot. Since the number of points in the graph is too large, i am using a cspline data interpolation method to smoothen the ...
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 ...
5
votes
1answer
1k views

Plotting labeled intervals in matplotlib/gnuplot

I have a data sample which looks like this: a 10:15:22 10:15:30 OK b 10:15:23 10:15:28 OK c 10:16:00 10:17:10 FAILED b 10:16:30 10:16:50 OK What I want is to plot the above data in the following ...
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 ...
9
votes
1answer
673 views

gnuplot epslatex functionality in matplotlib

I am used to plot data with gnuplot, so I can easily put the figures in a LaTeX document, using the epslatex terminal. For example: file = "data.dat" set terminal epslatex set output "figure1.tex" ...
1
vote
1answer
706 views

plot in node.js

I would like to build a server using node.js which is able to plot graphs. I could not find useful information so far on how to hook Matplotlib/ Pylab into node. Maybe GNUPlot can be hooked up? I ...
24
votes
17answers
18k views

What is the best plotting library for Python? [closed]

What Python plotting library do you recommend? It should be noted the following considerations: is it cross-OS? speed how clean it's interface? "prettyness" of the resulting plots License etc? In ...
36
votes
5answers
13k views

gnuplot vs Matplotlib

I've started on a project graphing Tomcat logs using gnuplot-py, specifically correlating particular requests with memory allocation and garbage collection. What is the collective wisdom on ...