[Matplotlib-users] Question about the Matplotlib classic Toolbar - the pan feature to display only existent data..

2007-01-31 Thread maser rati
Hi folks, reposting... has anyone a clue that might help in the right direction?? was my question too hard or would it help better if I rephrased it ? thanks so much maser maser rati <[EMAIL PROTECTED]> wrote: Hi Folks, I was wondering how to set the Matplotlib classic To

Re: [Matplotlib-users] segfault when running with pylab

2007-01-31 Thread Mark Heslep
Self follow-up: Rolled back to visual 0.3.2.9 and the segfault with pylab is not present there; both the visual object and pylab graph are rendered correctly. Sorry vpython, looks like the bug is due to your new beta. -Mark Mark Heslep wrote: > Version information: > ---

[Matplotlib-users] segfault when running with pylab

2007-01-31 Thread Mark Heslep
Version information: --- Vpython visual-4.beta14 In [2]: visual.__version__ Out[2]: '1.0.1' Python 2.4.4, Fedora Core 6 updated. python-matplotlib-0.87.7-3.fc6 Description: A segfault is reliably produced when running vpython along with pylab / matplotlib functions: cut--

Re: [Matplotlib-users] from pylab import * imports oldnumeric

2007-01-31 Thread Gary Ruben
Christopher Barker wrote: > Gary Ruben wrote: >> I just picked up a problem posted over on the numpy list. I noticed that >> from pylab import * is importing the oldnumeric-wrapper versions of >> zeros(), ones() and empty(), and presumably other things too, into the >> interactive namespace. S

[Matplotlib-users] so long [EMAIL PROTECTED]

2007-01-31 Thread John Hunter
Well, the old trusted email [EMAIL PROTECTED] is being retired today. It served me well for 12 years migrating from old Sun boxes through countless linux boxes but since I'm no longer at uchicago and the box it is running on is dying, I figured it is finally time to give it up. That and the fact

[Matplotlib-users] Event attributes

2007-01-31 Thread Martin Wilson
Hi, I'm using matplotlib in a GTK gui canvas with the GTKAgg backend. I'm connecting a mouse click 'button_press_event' to the click function. If I choose print event.x everything works fine. However I'm after the x value in terms of the x-axis not pixels. When I try print event.xdata I ge

Re: [Matplotlib-users] __init__.py not installed in svn build package

2007-01-31 Thread Chris Fonnesbeck
On 1/31/07, Christopher Barker <[EMAIL PROTECTED]> wrote: Chris Fonnesbeck wrote: > I have built a > matplotlib installer for OS X, Sorry I can't help with your problem, but: Which Python are you building against? Which num* are you including Which wxPython? Which other back-ends. Active

Re: [Matplotlib-users] __init__.py not installed in svn build package

2007-01-31 Thread Christopher Barker
Chris Fonnesbeck wrote: > I have built a > matplotlib installer for OS X, Sorry I can't help with your problem, but: Which Python are you building against? Which num* are you including Which wxPython? Which other back-ends. I'd really love to see a workable installer that we can post on python

[Matplotlib-users] __init__.py not installed in svn build package

2007-01-31 Thread Chris Fonnesbeck
This may not be the appropriate place to post this, but I have built a matplotlib installer for OS X, using setupegg.py: python setupegg.py config -L../staticlibs build bdist_mpkg However, when I import pylab, I get the follwing: ImportError: No module named matplotlib.pylab The problem appears

Re: [Matplotlib-users] subplot does not work in svn

2007-01-31 Thread Eric Firing
Chris, My guess is that you have some combination of 0.87.7 and svn; the traceback says 0.87.7, and the KeyError is because of an addition to rcParams since 0.87.7. Try this: In [1]:import matplotlib In [2]:matplotlib.rcParams Out[2]: {'axes.axisbelow': False, 'axes.edgecolor': 'k', 'axes

Re: [Matplotlib-users] subplot does not work in svn

2007-01-31 Thread Chris Fonnesbeck
On 1/31/07, John Hunter <[EMAIL PROTECTED]> wrote: > "Chris" == Chris Fonnesbeck <[EMAIL PROTECTED]> writes: Chris> The thing is, I deleted my entire ~/.matplotlib directory, Chris> hoping to start clean. Where does matplotlib get its info Chris> when a .matplotlibrc is not present

Re: [Matplotlib-users] subplot does not work in svn

2007-01-31 Thread Fernando Perez
On 1/31/07, Chris Fonnesbeck <[EMAIL PROTECTED]> wrote: > I am still getting this problem. Here is an ipython traceback of a very > simple plot: > > In [1]: from pylab import * Chris, try xmode verbose in ipython right before running your code. This will make the traceback dump even more deta

Re: [Matplotlib-users] subplot does not work in svn

2007-01-31 Thread John Hunter
> "Chris" == Chris Fonnesbeck <[EMAIL PROTECTED]> writes: Chris> The thing is, I deleted my entire ~/.matplotlib directory, Chris> hoping to start clean. Where does matplotlib get its info Chris> when a .matplotlibrc is not present in my home directory? It first looks in the curre

Re: [Matplotlib-users] from pylab import * imports oldnumeric

2007-01-31 Thread Christopher Barker
Gary Ruben wrote: > I just picked up a problem posted over on the numpy list. I noticed that > from pylab import * is importing the oldnumeric-wrapper versions of > zeros(), ones() and empty(), and presumably other things too, into the > interactive namespace. Shouldn't it be picking up the version

Re: [Matplotlib-users] subplot does not work in svn

2007-01-31 Thread Chris Fonnesbeck
On 1/6/07, Eric Firing <[EMAIL PROTECTED]> wrote: Chris, I suspect it is a problem with your matplotlibrc file; you could try stripping it down to bare minimum, as in the svn root directory. Another possibility is that your update is somehow incomplete or scrambled with an earlier installation.

[Matplotlib-users] from pylab import * imports oldnumeric

2007-01-31 Thread Gary Ruben
I just picked up a problem posted over on the numpy list. I noticed that from pylab import * is importing the oldnumeric-wrapper versions of zeros(), ones() and empty(), and presumably other things too, into the interactive namespace. Shouldn't it be picking up the versions from numpy's main namesp