Re: [Matplotlib-users] Importing pyplot crashes python

2010-01-22 Thread Christoph Gohlke
What does the command `python.exe -v -c from matplotlib import pylab` say? MPL 0.99.1 contains a bug (#2903460) that crashes the _path module on slow Pentium CPUs (at least when using Python 2.6). A updated installer is available at http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib. It might

Re: [Matplotlib-users] '_label_angles' attribute missing

2010-01-22 Thread Gökhan Sever
This fixes my upside-down looking top x-labels. I must have missed your updates. Thanks for the quick solution again. On Thu, Jan 21, 2010 at 10:36 PM, Jae-Joon Lee lee.j.j...@gmail.com wrote: The rotation of the ticklabels are now measured relative to the direction of the ticks. While I

Re: [Matplotlib-users] Assigning k key for xscaling

2010-01-22 Thread Gökhan Sever
It is very simple to change key-assignment. Take a look at the backend_bases.py code (search for event.key instances) : elif event.key == 'L': I was thinking to move y-scaling to y and x-scaling to x but x and y are assigned to something else (

Re: [Matplotlib-users] Transparent plot symbols

2010-01-22 Thread C M
On Fri, Jan 22, 2010 at 2:34 PM, Michael Cohen mco...@caltech.edu wrote: Hi all, I am making a plot with circle symbols, so I have 'o' in the plot() command. How do I make those circles transparent? I'd like the center of the circles to allow the catter plot underneath the circle location to

Re: [Matplotlib-users] Transparent plot symbols

2010-01-22 Thread Eric Firing
C M wrote: On Fri, Jan 22, 2010 at 2:34 PM, Michael Cohen mco...@caltech.edu wrote: Hi all, I am making a plot with circle symbols, so I have 'o' in the plot() command. How do I make those circles transparent? I'd like the center of the circles to allow the catter plot underneath the circle

Re: [Matplotlib-users] Top/Right Tick Labels

2010-01-22 Thread Andrew Kelly
So twiny() is up and running with a FixedLocator and Formatter for the ticks on the upper xAxis but am now unable to rotate these tick labels. Is there a special method to set the rotation, etc with FixedLocators? On Thu, Jan 21, 2010 at 3:09 PM, Jae-Joon Lee lee.j.j...@gmail.com wrote: On

[Matplotlib-users] position a wxPython frame near to a matplotlib point

2010-01-22 Thread C M
For those who you wxPython with matplotlib, does anyone know how to do this or can point me in the right direction? I would like to pick a point (that part is fine) and then place a wxFrame near to that point. I'm using something like: #Note: self is a wxPanel that contains the matplotlib plot.

Re: [Matplotlib-users] position a wxPython frame near to a matplotlib point

2010-01-22 Thread Christopher Barker
C M wrote: For those who you wxPython with matplotlib, does anyone know how to do this or can point me in the right direction? I would like to pick a point (that part is fine) and then place a wxFrame near to that point. I'm using something like: #Note: self is a wxPanel that contains