Re: [Matplotlib-users] Accelerating PDF saved plots

2012-07-08 Thread Jouni K . Seppänen
Michiel de Hoon mjldeh...@yahoo.com writes: I think it is not so bad, since it's mainly a matter of removing the stuff from the PDF backend that is no longer needed. Do we have a maintainer for the PDF backend? Because I would rather rely on him/her to make the changes to this backend. That

Re: [Matplotlib-users] Accelerating PDF saved plots

2012-07-08 Thread Eric Firing
On 2012/07/07 7:14 PM, Michiel de Hoon wrote: Hi, What kind of outputs can these backends create? The Mac OS X backend can create PDFs, but it simply uses the pdf backend to do so, so that wouldn't help you. The cairo backend can create PDFs by using cairo, so that could be worth trying.

[Matplotlib-users] (no subject)

2012-07-08 Thread Arek Kedzior
http://kamiasek.kx.cz/daqowrtau/669669.html -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions

[Matplotlib-users] Why does contourf with the extend argument tweak the data limits?

2012-07-08 Thread Brendan Barnwell
I just spent some time debugging an odd problem. Take this code: x,y = np.arange(-10,10), np.arange(-10,10) x,y = np.meshgrid(x,y) z = x**2+y**2 cs = pyplot.contourf(x,y,z,levels=np.arange(50, 220, 20), cmap=pyplot.cm.jet, extend='both') cs.cmap.set_under('k') cb = pyplot.colorbar(cs)