Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-18 Thread Gökhan Sever
On Thu, Oct 18, 2012 at 2:09 AM, Jouni K. Seppänen wrote: > Gökhan Sever > writes: > > > Another point I noticed is setting linewidth to 0 (in fill_between > > function) isn't working as expected when figure is saved as a PDF > > file. > > A workaround is to add edgecolor='None' to the fill_betw

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-18 Thread Jouni K . Seppänen
Jouni K. Seppänen writes: > Gökhan Sever > writes: > >> Another point I noticed is setting linewidth to 0 (in fill_between >> function) isn't working as expected when figure is saved as a PDF >> file. > > A workaround is to add edgecolor='None' to the fill_between call. I filed an issue at http

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-18 Thread Jouni K . Seppänen
Gökhan Sever writes: > Another point I noticed is setting linewidth to 0 (in fill_between > function) isn't working as expected when figure is saved as a PDF > file. A workaround is to add edgecolor='None' to the fill_between call. -- Jouni K. Seppänen http://www.iki.fi/jks -

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-18 Thread Jouni K . Seppänen
Benjamin Root writes: > On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever > wrote: > >> Another point I noticed is setting linewidth to 0 (in fill_between >> function) isn't working as expected when figure is saved as a PDF file. >> > Actually, this is not a bug in mpl. It is a "bug" in various vie

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Gökhan Sever
On Wed, Oct 17, 2012 at 12:03 PM, Damon McDougall wrote: > > > Also notice the triangle transparency... > > True. Mike's 4 line addition fixes that issue: https://github.com/matplotlib/matplotlib/issues/1410 -- Gökhan -

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Gökhan Sever
I see that the same behavior here on 3 different viewers. It is a slight aesthetic issue, but once in a while I come up similar differences between PDF and PNGs outputs. -- Gökhan -- Everyone hates slow websites. So do we

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Damon McDougall
On Wed, Oct 17, 2012 at 6:58 PM, Benjamin Root wrote: > > > On Wed, Oct 17, 2012 at 1:21 PM, Damon McDougall > wrote: >> >> On Wed, Oct 17, 2012 at 6:13 PM, Benjamin Root wrote: >> > >> > >> > On Wed, Oct 17, 2012 at 1:08 PM, Damon McDougall >> > >> > wrote: >> >> >> >> On Wed, Oct 17, 2012 at

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Damon McDougall
On Wed, Oct 17, 2012 at 6:13 PM, Benjamin Root wrote: > > > On Wed, Oct 17, 2012 at 1:08 PM, Damon McDougall > wrote: >> >> On Wed, Oct 17, 2012 at 5:56 PM, Gökhan Sever >> wrote: >> > >> > >> > On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root wrote: >> >> >> >> >> >> >> >> On Wed, Oct 17, 2012

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Benjamin Root
On Wed, Oct 17, 2012 at 1:08 PM, Damon McDougall wrote: > On Wed, Oct 17, 2012 at 5:56 PM, Gökhan Sever > wrote: > > > > > > On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root wrote: > >> > >> > >> > >> On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever > >> wrote: > >>> > >>> Thanks Mike, > >>> > >>>

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Damon McDougall
On Wed, Oct 17, 2012 at 5:56 PM, Gökhan Sever wrote: > > > On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root wrote: >> >> >> >> On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever >> wrote: >>> >>> Thanks Mike, >>> >>> Another point I noticed is setting linewidth to 0 (in fill_between >>> function) isn

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Gökhan Sever
On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root wrote: > > > On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever wrote: > >> Thanks Mike, >> >> Another point I noticed is setting linewidth to 0 (in fill_between >> function) isn't working as expected when figure is saved as a PDF file. >> >> I noticed

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Benjamin Root
On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever wrote: > Thanks Mike, > > Another point I noticed is setting linewidth to 0 (in fill_between > function) isn't working as expected when figure is saved as a PDF file. > > I noticed this while posting a sample script on scipy-users: > > http://atmos.uw

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Gökhan Sever
Thanks Mike, Another point I noticed is setting linewidth to 0 (in fill_between function) isn't working as expected when figure is saved as a PDF file. I noticed this while posting a sample script on scipy-users: http://atmos.uwyo.edu/~gsever/data/test/curvefit_test.py Compare the outputs of pd

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-17 Thread Michael Droettboom
Filed as https://github.com/matplotlib/matplotlib/issues/1410 On 10/16/2012 10:38 PM, Eric Firing wrote: On 2012/10/16 4:27 PM, Gökhan Sever wrote: Hello, I see that a few days old clone of mpl, cannot save open symbols correctly in a pdf file. Here is a simple test case (in ipython --pylab):

Re: [Matplotlib-users] Problem saving open symbols in PDF

2012-10-16 Thread Eric Firing
On 2012/10/16 4:27 PM, Gökhan Sever wrote: > Hello, > > I see that a few days old clone of mpl, cannot save open symbols > correctly in a pdf file. > > Here is a simple test case (in ipython --pylab): > > I6 xx = np.random.random(1000) > > I7 plt.plot(xx, 'D', mfc='none') > > On screen open symbols

[Matplotlib-users] Problem saving open symbols in PDF

2012-10-16 Thread Gökhan Sever
Hello, I see that a few days old clone of mpl, cannot save open symbols correctly in a pdf file. Here is a simple test case (in ipython --pylab): I6 xx = np.random.random(1000) I7 plt.plot(xx, 'D', mfc='none') On screen open symbols are fine, as expected transparency works fine, however when s