Re: [Matplotlib-users] how to remove a part of the legend ?

2010-07-01 Thread Matthias Michler
On Wednesday, June 30, 2010 06:24:12 pm Philippe Crave wrote: Hello, I have a subplot with 4 lines. I display the legend. I can remove a line easily with something like del(self.ax.lines[n]). But how can I remove the line in the legend ? I found that I can remove all the lines, add news

Re: [Matplotlib-users] matplotlib Mac binary that works with python.org python and older MacOS X?

2010-07-01 Thread Russell E. Owen
In article rowen-466e37.16580630062...@news.gmane.org, Russell E. Owen ro...@uw.edu wrote: I'm trying to find a matplotlib 0.99.3 binary installer that works with the standard python.org Python (preferably 2.6) and hence works with Mac OS X 10.4 or greater. (I distribute an application that

Re: [Matplotlib-users] matplotlib in interactive mode from a script

2010-07-01 Thread ninjasmith
Hi, I think what you are after is the interactive mode of matplotlib. You can turn is on by ion and redraw the current figure using draw. In ipythons pylab mode this is done implicit. I attached some example lines which guide you to the right direction. I'm not sure why I need

Re: [Matplotlib-users] extract country borders data convert to shapefile

2010-07-01 Thread P. R.M.
Joe, Excellent! this worked out perfectly... thank you so much for your help. Perhaps these shapefiles should be published somewhere, since it really is useful to have. I wasnt able to find it anywhere on the web. anyway, problem solved; you saved my day. thanks again, P.R. Date: Wed, 30 Jun

Re: [Matplotlib-users] how to remove a part of the legend ?

2010-07-01 Thread Philippe Crave
perfect! was really simple, but I did not think about it. thanks for your help! 2010/7/1 Matthias Michler matthiasmich...@gmx.net: On Wednesday, June 30, 2010 06:24:12 pm Philippe Crave wrote: Hello, I have a subplot with 4 lines. I display the legend. I can remove a line easily with

[Matplotlib-users] show legend without box ?

2010-07-01 Thread Forest Yang
Hi All, Is there any way to show the legend but without the box ? it is blocking the figures. Although I can set the alpha to make the legend transparent, still remove the box and make it transparent would be better. Thanks. Forest.

Re: [Matplotlib-users] show legend without box ?

2010-07-01 Thread John Hunter
On Thu, Jul 1, 2010 at 1:50 PM, Forest Yang yzine0...@gmail.com wrote: Hi All,  Is there any way to show the legend but without the box ? it is blocking the figures. Although I can set the alpha to make the legend transparent, still remove the box and make it transparent would be better.

Re: [Matplotlib-users] matplotlib Mac binary that works with python.org python and older MacOS X?

2010-07-01 Thread Christopher Barker
Russell E. Owen wrote: I made binaries (on Mac OS X 10.5) using my instructions: http://www.astro.washington.edu/users/rowen/BuildingMatplotlibForMac.htm l They are available from here, for now: http://www.astro.washington.edu/users/rowen/python/ please test them. Thanks Russell, this

Re: [Matplotlib-users] matplotlib Mac binary that works with python.org python and older MacOS X?

2010-07-01 Thread John Hunter
On Thu, Jul 1, 2010 at 12:56 PM, Christopher Barker chris.bar...@noaa.gov wrote: Russell E. Owen wrote: I made binaries (on Mac OS X 10.5) using my instructions: http://www.astro.washington.edu/users/rowen/BuildingMatplotlibForMac.htm l They are available from here, for now:

Re: [Matplotlib-users] matplotlib Mac binary that works with python.org python and older MacOS X?

2010-07-01 Thread Christopher Barker
Russell E. Owen wrote: However, at present I don't know if there is a Python 2.6 that is both compatible with older versions of Mac OS X and is built with 64-bit support. FWIW, I think the official 2.7 builds will be Intel32+Intel64+PPC32 I don't know if Ronald is going to back=port any of

Re: [Matplotlib-users] matplotlib in interactive mode from a script

2010-07-01 Thread Benjamin Root
On Thu, Jul 1, 2010 at 10:42 AM, ninjasmith henrylindsaysm...@gmail.comwrote: Hi, I think what you are after is the interactive mode of matplotlib. You can turn is on by ion and redraw the current figure using draw. In ipythons pylab mode this is done implicit. I attached some