Re: [Matplotlib-users] missing lines on graph with upgrade to 0.98.0

2008-06-04 Thread Eric Firing
Bryan Fodness wrote: > I just upgraded to 0.98.0 and recreated a few graphs. I am missing > parts of the edges of a fill and polygon. Any suggestions? > Please post an illustrative script, as simple as possible. Eric - C

[Matplotlib-users] missing lines on graph with upgrade to 0.98.0

2008-06-04 Thread Bryan Fodness
I just upgraded to 0.98.0 and recreated a few graphs. I am missing parts of the edges of a fill and polygon. Any suggestions? -- "The game of science can accurately be described as a never-ending insult to human intelligence." - João Magueijo <>--

Re: [Matplotlib-users] trying to change the number of elements in array while preserving data

2008-06-04 Thread Christopher Barker
Bryan Fodness wrote: > I tried posting this to numpy, but my posts never show up. odd -- it works fine for me -- are you subscribed? anyway: >>> import numpy as np >>> a = np.arange(100).reshape((10,10)) >>> b = np.ones((5,7)) * 30 >>> a array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9],

[Matplotlib-users] trying to change the number of elements in array while preserving data

2008-06-04 Thread Bryan Fodness
I tried posting this to numpy, but my posts never show up. So, I was hoping someone here might be able to help me. I have two arrays that are different sizes and i would like to be able to add them for plotting. If I have an array a and b, [[1 2 3 4 5 6 7 8 9] [1 2 3 4 5 6 7 8 9] [1 2 3 4 5 6

Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-04 Thread KURT PETERS
My fault. that last error was because I re-installed matplotlib and forgot to "re-change" the backend to TkAgg. Sorry. Everything seems to be working again now (although a bit slower). Kurt - Check out the new SourceForge

Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-04 Thread KURT PETERS
Looks like your latest compile includes the full-res data. Kurt - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/service

Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-04 Thread KURT PETERS
Well, installing the highres data into the 'data' directory didn't help. Kurt - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourcefor

Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-04 Thread KURT PETERS
Jeff, Got it and it seemed to install. Well... as luck would have it, I still have a problem. I think I know what is causing it, though. I was using the high-res data, and the "upgrade" nukes that data. Here's the message I'm getting along with the code snippet, just to make sure I'm on the

Re: [Matplotlib-users] plot edge or border

2008-06-04 Thread Margherita Vittone wiersma
HI , thank you very much for the quick reply, i have an older version (which is not up to me upgrade) so the subplots_adjust worked just fine. Thanks again. bye for now Margherita - Check out the new SourceForge.net Marketpla

Re: [Matplotlib-users] plot edge or border

2008-06-04 Thread Matthias Michler
Hi Margherita, On Wednesday 04 June 2008 18:01:47 Margherita Vittone wiersma wrote: > Hi all, > i have a plot on which the x axix has timestamps info; i would like to > control the size of the edge or border (not sure whta is the proper word) > so the there is enough space between the real plot an

Re: [Matplotlib-users] plot edge or border

2008-06-04 Thread John Hunter
On Wed, Jun 4, 2008 at 11:01 AM, Margherita Vittone wiersma <[EMAIL PROTECTED]> wrote: > Hi all, > i have a plot on which the x axix has timestamps info; i would like to > control the size > of the edge or border (not sure whta is the proper word) so the there is > enough space between > the real

[Matplotlib-users] plot edge or border

2008-06-04 Thread Margherita Vittone wiersma
Hi all, i have a plot on which the x axix has timestamps info; i would like to control the size of the edge or border (not sure whta is the proper word) so the there is enough space between the real plot and the outer border so that the x labels are not cut out. I rotate the xlabel also but stil

Re: [Matplotlib-users] Legend for a scatter plot based on symbols

2008-06-04 Thread Matthieu Brucher
Hi, Thanks for the tips, I'll try that :) Matthieu 2008/6/4 Matthias Michler <[EMAIL PROTECTED]>: > Hi Matthieu, > > I'm not sure if somebody else already answered to your question and I don't > know the best way to achieve what you need, but I suggest the following > work-around: > > scatter(x

Re: [Matplotlib-users] Legend for a scatter plot based on symbols

2008-06-04 Thread Matthias Michler
Hi Matthieu, I'm not sure if somebody else already answered to your question and I don't know the best way to achieve what you need, but I suggest the following work-around: scatter(x, x**2.4, marker='s', color='r', s=25, label="_") # with no label plot([0], [0], ls='', marker='s', color='r',