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

2012-10-18 Thread Jouni K . Seppänen
Benjamin Root ben.r...@ou.edu writes: On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever gokhanse...@gmail.comwrote: 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.

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

2012-10-18 Thread Jouni K . Seppänen
Gökhan Sever gokhanse...@gmail.com 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
Jouni K. Seppänen j...@iki.fi writes: Gökhan Sever gokhanse...@gmail.com 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

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 j...@iki.fi wrote: Gökhan Sever gokhanse...@gmail.com 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

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

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

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 gokhanse...@gmail.comwrote: 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:

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 ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever gokhanse...@gmail.comwrote: 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

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 gokhanse...@gmail.com wrote: On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever gokhanse...@gmail.com wrote: Thanks Mike, Another point I noticed is setting linewidth to 0

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 damon.mcdoug...@gmail.comwrote: On Wed, Oct 17, 2012 at 5:56 PM, Gökhan Sever gokhanse...@gmail.com wrote: On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 12:17 PM, Gökhan Sever

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 ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 1:08 PM, Damon McDougall damon.mcdoug...@gmail.com wrote: On Wed, Oct 17, 2012 at 5:56 PM, Gökhan Sever gokhanse...@gmail.com wrote: On Wed, Oct 17, 2012 at 10:21 AM, Benjamin Root

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

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 ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 1:21 PM, Damon McDougall damon.mcdoug...@gmail.com wrote: On Wed, Oct 17, 2012 at 6:13 PM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Oct 17, 2012 at 1:08 PM, Damon McDougall

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 damon.mcdoug...@gmail.com 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-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 are fine,