Re: [Matplotlib-users] matplotlib-0.99.1-py2.5-macosx10.5.dmg

2009-09-23 Thread Brian Granger
Just this afternoon I saw the same issue with the binary egg for 0.99.1 for OS X. Brian On Wed, Sep 23, 2009 at 7:59 PM, John Hunter wrote: > On Wed, Sep 23, 2009 at 4:39 PM, Christopher Barker > wrote: > > Teemu Rinne wrote: > >> from matplotlib import ft2font > >> ImportError: dlopen(/L

Re: [Matplotlib-users] Hiding data via legend

2009-09-23 Thread Jae-Joon Lee
On Wed, Sep 23, 2009 at 3:27 PM, butterw wrote: > > Hi, > > pickers work great to make matplotlib plots more interactive/general user > friendly. > > On the subject of the legend_picker.py example, I was wondering if it was > possible to combine both a legend picker and a line picker in the same p

Re: [Matplotlib-users] Segmentation fault under Agg

2009-09-23 Thread John Hunter
On Wed, Sep 23, 2009 at 10:15 PM, John Hunter wrote: > On Wed, Sep 23, 2009 at 6:47 PM, Mike Nicolls wrote: >> I've encountered a segmentation fault using the Agg backend when making >> and saving a png plot.  The segmentation fault does not seem to occur >> under different backends (e.g. Cairo).

Re: [Matplotlib-users] Segmentation fault under Agg

2009-09-23 Thread John Hunter
On Wed, Sep 23, 2009 at 6:47 PM, Mike Nicolls wrote: > I've encountered a segmentation fault using the Agg backend when making > and saving a png plot.  The segmentation fault does not seem to occur > under different backends (e.g. Cairo). > > The sequence of commands amounts to making a plot, set

Re: [Matplotlib-users] matplotlib-0.99.1-py2.5-macosx10.5.dmg

2009-09-23 Thread John Hunter
On Wed, Sep 23, 2009 at 4:39 PM, Christopher Barker wrote: > Teemu Rinne wrote: >>      from matplotlib import ft2font >> ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.5/ >> lib/python >> 2.5/site-packages/matplotlib/ft2font.so, 2): Library not loaded: / >> Users/jdhunter >>

Re: [Matplotlib-users] Unknown Path Error

2009-09-23 Thread Cédrick FAURY
Hi, I have the same problem as Andrew Kelly I did the example code below (from coords_demo.py) to reproduce the bug : #!/usr/bin/env python """ An example of how to interact with the plotting canvas by connecting to move and click events """ import sys from pylab import * t = arange(0.0, 1.0, 0.

[Matplotlib-users] Segmentation fault under Agg

2009-09-23 Thread Mike Nicolls
I've encountered a segmentation fault using the Agg backend when making and saving a png plot. The segmentation fault does not seem to occur under different backends (e.g. Cairo). The sequence of commands amounts to making a plot, setting the limits of the plot, then saving the plot as a png u

Re: [Matplotlib-users] matplotlib-0.99.1-py2.5-macosx10.5.dmg

2009-09-23 Thread Christopher Barker
Teemu Rinne wrote: > from matplotlib import ft2font > ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.5/ > lib/python > 2.5/site-packages/matplotlib/ft2font.so, 2): Library not loaded: / > Users/jdhunter > /devbuild/lib/libfreetype.6.dylib > Am I missing something or is

Re: [Matplotlib-users] matplotlib with eclipse: how to get a graph?

2009-09-23 Thread Gökhan Sever
On Wed, Sep 23, 2009 at 3:51 PM, Mark Bakker wrote: > Hello list, > I recently started using Eclipse with Pydev. I like it a lot but have not > been able to get interactive plotting going (which otherwise works fine). > > My file is simple: > > from pylab import * > > ion() > > plot([1,2,3]) > >

[Matplotlib-users] matplotlib with eclipse: how to get a graph?

2009-09-23 Thread Mark Bakker
Hello list, I recently started using Eclipse with Pydev. I like it a lot but have not been able to get interactive plotting going (which otherwise works fine). My file is simple: from pylab import * ion() plot([1,2,3]) When I run this form within Eclipse, I do see a graphing window open up bu

[Matplotlib-users] matplotlib-0.99.1-py2.5-macosx10.5.dmg

2009-09-23 Thread Teemu Rinne
Hi, I tried to install 0.99.1 [I installed 0.99 a few days ago. I hoped that with 0.99.1 I'd get rid of problems with using imshow with masked_array and set_bad(alpha=0.0)]: Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53) [GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin Type "help", "

Re: [Matplotlib-users] Hiding data via legend

2009-09-23 Thread butterw
Hi, pickers work great to make matplotlib plots more interactive/general user friendly. On the subject of the legend_picker.py example, I was wondering if it was possible to combine both a legend picker and a line picker in the same plot. From what I gather they will both use the same onpick eve