Re: [Matplotlib-users] Feature request: automatic scaling of subplots, margins, etc

2011-05-17 Thread Jae-Joon Lee
Attached is a modified version of Tony's script. * no drawing is necessary * support subplots that span multiple rows/columns Please test it and let me know of any problem. I'm planning to push these functionality into matplolib after some refactoring (e.g., it would be good to have

[Matplotlib-users] plot range affected by axvspan() call

2011-05-17 Thread Joachim Saul
All, I have stumbled upon a (for me) unexpected behaviour of axvspan(). import matplotlib.pylab as plt from numpy import * x = arange(1000) y = 0.2*sin(0.02*x) ax = plt.axes() plt.axvspan(250, 400, facecolor='g', alpha=0.2) plt.plot(x,y) plt.show() The displayed y range is -0.2 to 1, while

[Matplotlib-users] adding some text

2011-05-17 Thread Neal Becker
I have several line graphs on a single plot. I'd like to indicate what is the mean of each of them (they are showing cumulative distributions). Each is a different color. I tried putting 'mean=xxx' into the legend. That works, but I think it's confusing. The legend normally displays

[Matplotlib-users] result in the graph

2011-05-17 Thread Waleria
Hello all, I have this code: http://dpaste.com/543369/ (part that generates the chart) . So i need to show a result in the graph, i have the line 69 (variable x_sqr) in code, i need to show tthe result of variable in the graph. How can i do this? Thank you Waléria

Re: [Matplotlib-users] result in the graph

2011-05-17 Thread Waleria
Where did you change in the code? Waléria On Tue, May 17, 2011 at 9:46 AM, Sathishkumar Duraisamy flowers...@gmail.com wrote: On Tue, May 17, 2011 at 6:05 PM, Waleria waleriantu...@gmail.com wrote: Hello all, I have this code: http://dpaste.com/543369/ (part that generates the chart)

[Matplotlib-users] Fwd: result in the graph

2011-05-17 Thread Scott Sinclair
-- Forwarded message -- From: Scott Sinclair scott.sinclair...@gmail.com Date: 17 May 2011 14:52 Subject: Re: [Matplotlib-users] result in the graph To: Waleria waleriantu...@gmail.com On 17 May 2011 14:35, Waleria waleriantu...@gmail.com wrote: Hello all, I have this code: