[Matplotlib-users] Dependency on PyQt when using PySide

2012-03-28 Thread Stuart Mentzer
Hello, Just trying out the PySide support in matplotlib 1.1.0 and it works great but when it seems that when using the Qt4Agg backend there is a lingering import dependency on PyQt that PyInstaller picks up. My application works with PyQt removed so I assume that this is a PyInstaller issue but

Re: [Matplotlib-users] corrupt pdf of histogram

2012-03-28 Thread Jouni K . Seppänen
sanders writes: > If keywords fill=False and log=True, > > then after saving, the png looks fine but the histogram in the pdf is > mixed up. Confirmed, thanks for the report. I filed this at https://github.com/matplotlib/matplotlib/issues/804 -- Jouni K. Seppänen http://www.iki.fi/jks --

Re: [Matplotlib-users] Too Many Requests error - matplotlib gallery

2012-03-28 Thread guido
Thanks a lot John!! It's working perfectly. From: John Hunter [mailto:jdh2...@gmail.com] Sent: Wednesday, March 28, 2012 11:52 AM To: Espinosa, Guido R Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Too Many Requests error - matplotlib gallery On Mon, Mar 19, 2012 at

Re: [Matplotlib-users] Too Many Requests error - matplotlib gallery

2012-03-28 Thread John Hunter
On Mon, Mar 19, 2012 at 12:53 PM, wrote: > Awesome John!! Thank you very much for your help on this… > > ** ** > > Guido > > > > *From:* John Hunter [mailto:jdh2...@gmail.com] > *Sent:* Monday, March 19, 2012 12:52 PM > *To:* Espinosa, Guido R > *Cc:* matplotlib-users@lists.source

[Matplotlib-users] corrupt pdf of histogram

2012-03-28 Thread sanders
Dear all, I'm making histograms: If keywords fill=False and log=True, then after saving, the png looks fine but the histogram in the pdf is mixed up. Anyone knows about this? Bram ### Script ### import matplotlib.pyplot as plt import numpy as np data = np.random.normal(size=1000) ### corre