[Matplotlib-users] [job] top-flight graphicist needed for climate science & media group

2009-09-13 Thread Andrew Straw
I am posting this for a friend of mine. Please respond to the email address in the ad if you are interested. -- Forwarded message -- From: *Ben Strauss* > Date: Fri, Sep 11, 2009 at 4:56 PM Subject: [job] top-flight graphicist needed for clima

Re: [Matplotlib-users] quiver with angles

2009-09-13 Thread magnus_p
I tried the code you supplied and I didn't get it to work with the *angles* keyword, I got: "ValueError: shape mismatch: objects cannot be broadcast to a single shape" I have matplotlib.__version__ = '0.98.5.2'. Although after thinking about it for a while I did: from scipy import * import matpl

Re: [Matplotlib-users] adjusting width of subplot columns

2009-09-13 Thread Neil Crighton
per freem writes: > > hi all, > > i have a 3x2 subplot figure, and i would like to adjust the relative > width of the second column. in other words, if i have: > I set the axes positions by hand in these situations using add_axes(). So: fig = plt.figure() width1 = 0.3 width2 = 0.2 height = 0.

Re: [Matplotlib-users] Problem in svn install

2009-09-13 Thread davide lasagna
Thanks, I thougth that this could be the problem. Actually i fixed it by myself. Thanks anyway. Cheers Davide -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report des

Re: [Matplotlib-users] plotting asymmetric error bars?

2009-09-13 Thread Gary Ruben
Hi Per, You need 2*N, not N*2 arrays here. I think you're also trying to use absolute values so you probably need something like this: plt.errorbar([1,2,3],[1,2,3],yerr=np.abs(a.T-[1,2,3])) I hope this is what you're after, Gary R. per freem wrote: > hi all, > > i am trying to plot asymmetri