Re: [Matplotlib-users] Plots dates on contour plot

2010-01-22 Thread Eric Firing
Filipe Pires Alvarenga Fernandes wrote: > Dear matplotlib users, > > I've been successful to plot 2-D lines with dates in the x-axis directly > like: > > > plot(time,dens[1,:]) > > Where times starts at 1998-01-11 01:00:00 and ends at 1998-02-06 > 08:00:00 (633 elements). and dens has 10 elem

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 conta

[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] 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 wrote: > On Thu, Jan 21, 2010 at 2:

Re: [Matplotlib-users] Transparent plot symbols

2010-01-22 Thread Michael Cohen
On 01/22/2010 12:02 PM, Eric Firing wrote: > C M wrote: >> On Fri, Jan 22, 2010 at 2:34 PM, Michael Cohen 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 allo

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 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 t

Re: [Matplotlib-users] Transparent plot symbols

2010-01-22 Thread C M
On Fri, Jan 22, 2010 at 2:34 PM, Michael Cohen 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 show > through.

[Matplotlib-users] Transparent plot symbols

2010-01-22 Thread Michael Cohen
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 show through. Cheers Michael -

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 ( http://matplotlib.sourceforge.net/users/

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 wrote: > The rotation of the ticklabels are now measured relative to the > direction of the ticks. While I understand this can be

[Matplotlib-users] plot_surface masked array

2010-01-22 Thread hanneshannes
Hi there, I am trying to plot a surface using plot_surface. As this surface is generated using griddata, the corresponding z-values is a masked array. When I plot this masked array using plot_surface, the colormap is completely upset, the whole surface appears in blue. One can do something like p

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 . It mi