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