[Matplotlib-users] Bug: y axis labels end up having multiple fonts. Example included

2006-07-17 Thread Vinj Vinj
Some of the y axis labels end up having different fonts: http://s3.amazonaws.com/oylb/wlsn_qm.png?20060717232235 In the above image, 7 and 7.5 have a larger font. I'm using matplotlib 0.87.3 with ubuntu Vineet - Take Su

Re: [Matplotlib-users] Getting error TypeError: unsupported operand type(s) for /: 'BinOp' and 'BinOp'

2006-07-17 Thread Vinj Vinj
>>sy = (ax.bbox.ur().y() - ax.bbox.ll().y()) / (ax.viewLim.ur().y() - >>ax.viewLim.ll().y()) I solved the problem by using .get() on the BinOp's and then converting it back to a BinOP using Value() Vineet - Take Surveys.

[Matplotlib-users] Event handling for several windows

2006-07-17 Thread Tommy Grav
I have a program that uses matplotlib to plot two images. figim24 = figure(figsize=(5,5)) figim70 = figure(figsize=(5,5)) I want an event loop that will be able to register which of the two figures I mouse click in. When I only had one figure I used figim24.canvas.mpl_connect("button_press_event

[Matplotlib-users] multipage postscript plots

2006-07-17 Thread Rose Finn
Hi,Does anyone know how to create a multi-page postscript plot, so that several figures are included in one postscript file?Thanks,Rose Rose Finn Department of Physics Siena College Loudonville, NY  12211 (518) 782-6764 - Take

Re: [Matplotlib-users] [egenix-users] Matplotlib (pylab) datetime incompatible with Egenix mxDateTime

2006-07-17 Thread M.-A. Lemburg
Simon Hook wrote: > Hi, > > [cross posted to egenix and matplotlib] > > I have been using the egenix mxDateTime module and want to plot some of > the dates with Matplotlib (pylab). Pylab uses num2date and date2num to > covert datesandtimes to floating point values for plotting. > Unfortunately if

Re: [Matplotlib-users] pylab.semilogy() line plots and missing data

2006-07-17 Thread Darren Dale
On Sunday 16 July 2006 19:38, Webb Sprague wrote: > I have data with missing values represented by nans (like array([1.0, > nan, 3.0]) that I am plotting with pylab.semilogy(). Unfortunately, > the lines are getting connected through the nans, while I was hoping > they would be left empty. If som