Tagged Questions

0
votes
0answers
69 views

Why won’t my Python scatter plot work?

I created a very simple scatter plot using pylab. pylab.scatter(engineSize, fuelMile) pylab.show() The rest of the program isn't worth posting, because it's that line that's giving me the problem. …
3
votes
1answer
44 views

Matplotlib: draw grid lines behind other graph elements

In Matplotlib, I make dashed grid lines as follows: fig = pylab.figure() ax = fig.add_subplot(1,1,1) ax.yaxis.grid(color='gray', linestyle='dashed') however, I can't find out how (or even if it …
0
votes
2answers
44 views

tail read a growing dynamic file and extract two columns and then print a graph.

whats the best way to read a 1 GB file that gets time series data logged in it and generate a real time graph with two of its columns (one time and other a number)? I see that you have different ways …
0
votes
1answer
47 views

Sharing contour plot attributes between subplots

I'm plotting several contour plots side by side for visualizing the time evolution of certain function. I want each contour's value and color to be shared between all subplots, but each time I add a …
1
vote
2answers
251 views

Resize a figure automatically in matplotlib

Is there a way to automatically resize a figure to properly fit contained plots in a matplotlib/pylab image? I'm creating heatmap (sub)plots that differ in aspect ratio according to the data used. …
0
votes
4answers
257 views

Displaying X and y axis in pylab

Is there a way in pylab to display the X and Y axis? I know using grid() will display them, but it comes with numerous other lines all given the same emphasis.
2
votes
2answers
292 views

How to scale matplotlib subplot heights individually

Using matplotlib/pylab.... How do I plot 5 heatmaps as subplots which have the same number of columns but different row counts? In other words, I need each subplot's height to be scaled differently. …
0
votes
4answers
287 views

find length of sequences of identical values in a numpy array

In a pylab program (which could probably be a matlab program as well) I have a numpy array of numbers representing distances: d[t] is the distance at time t (and the timespan of my data is len(d) time …
1
vote
3answers
200 views

Python plotting libraries

What alternatives are there to pylab for plotting in python? In particular, I'm looking for something that doesn't use the stateful model that pylab does.
1
vote
1answer
139 views

both a top and a bottom axis in pylab (e.g. w/ different units) (or left and right)

I'm trying to make a plot with pylab/matplotlib, and I have two different sets of units for the x axis. So what I would like the plot to have is two axis with different ticks, one on the top and one …
1
vote
2answers
422 views

Is there a way to reduce scipy/numpy precision to reduce memory consumption ?

On my 64-bit Debian/Lenny system (4GByte RAM + 4GByte swap partition) I can successfully do: v=array(10000*random([512,512,512]),dtype=np.int16) f=fftn(v) but with f being a np.complex128 the …
1
vote
2answers
581 views

Scaling the y-axis with matplotlib in python

Does anybody know how to scale the y-axis with matplotlib? I don't want to change the y-limit, I just want to extend the physical space. ^ ^ | | | | +----> | Before +----> …