Re: [Matplotlib-users] errorbar plot with different markers

2011-08-18 Thread Benjamin Root
On Tue, Aug 16, 2011 at 7:12 PM, Andre' Walker-Loud wrote: > Hi All, > > A question for a possible new feature for Matplotlib. > > First, in case there is a way to do it currently: > > I often find myself plotting data with errorbars, and I would like to be > able to modify the marker, or marker s

[Matplotlib-users] errorbar plot with different markers

2011-08-16 Thread Andre' Walker-Loud
Hi All, A question for a possible new feature for Matplotlib. First, in case there is a way to do it currently: I often find myself plotting data with errorbars, and I would like to be able to modify the marker, or marker size of each individual point separately. A (seemingly to me) natural w

Re: [Matplotlib-users] Errorbar plot

2011-02-22 Thread Paul Ivanov
Waléria Antunes David, on 2011-02-22 16:17, wrote: > Hi Daniel, > > Yes, i tried import errorbari did this: import matplotlib.errobar , but > occurred an error: Exception Type: ImportError Exception Value: > > No module named errobar Hi Waléria, there was a typo in Daniel's reply. The fun

Re: [Matplotlib-users] Errorbar plot

2011-02-22 Thread Waléria Antunes David
plot, but i need a errorbar this: > http://img14.imageshack.us/i/exampled.jpg/ (in blue) > > My line about errorbar: plt.errorbar(x, y, yerr=e, capsize=6, elinewidth=2, > marker='_', linestyle='', markeredgecolor='r',color='r', label='Pontos

[Matplotlib-users] errorbar plot

2011-02-22 Thread Waléria Antunes David
Hi all, I have this line about errorbar plot, but i need a errorbar this: http://img14.imageshack.us/i/exampled.jpg/ (in blue) My line about errorbar: plt.errorbar(x, y, yerr=e, capsize=6, elinewidth=2, marker='_', linestyle='', markeredgecolor='r',color='r', label='Pontos') Can you help me? Th

Re: [Matplotlib-users] Errorbar plot

2011-02-22 Thread Daniel Mader
Hi Waléria, you should try to figure out the docstring help :) In a terminal (IDLE or IPython), just do import matplotlib matplotlib.errobar? This will show you extensive help on the command. You will also need to compare with the regular plot command: matplotlib.plot? Best regards, Daniel P.

[Matplotlib-users] Errorbar plot

2011-02-22 Thread Waléria Antunes David
Hi all, I have this line about errorbar plot, but i need a errorbar this: http://img14.imageshack.us/i/exampled.jpg/ (in blue) My line about errorbar: plt.errorbar(x, y, yerr=e, capsize=6, elinewidth=2, marker='_', linestyle='', markeredgecolor='r',color='r', label='Pontos') Can you help me? Th

Re: [Matplotlib-users] errorbar plot requires hold=True

2010-10-03 Thread Eric Firing
On 09/30/2010 08:28 AM, Joey Richards wrote: > When I use the errorbar() routine to plot data, unless I set hold=True as a > kwarg (or set it globally), the data are plotted without the errorbars. I > believe it is because the routine first plots the error bars, then overplots > the data points

Re: [Matplotlib-users] errorbar plot requires hold=True

2010-09-30 Thread Joey Richards
On Sep 30, 2010, at 11:46 AM, Benjamin Root wrote: > I just had another thought have you ever modified your matplotlibrc file? > It might be possible that you have turned off holds (which is default). If > so, then this would be a bug, because the errorbar function should > temporarially

Re: [Matplotlib-users] errorbar plot requires hold=True

2010-09-30 Thread Eric Firing
On 09/30/2010 08:28 AM, Joey Richards wrote: > When I use the errorbar() routine to plot data, unless I set hold=True as a > kwarg (or set it globally), the data are plotted without the errorbars. I > believe it is because the routine first plots the error bars, then overplots > the data points

Re: [Matplotlib-users] errorbar plot requires hold=True

2010-09-30 Thread Benjamin Root
On Thu, Sep 30, 2010 at 1:44 PM, Benjamin Root wrote: > On Thu, Sep 30, 2010 at 1:28 PM, Joey Richards wrote: > >> When I use the errorbar() routine to plot data, unless I set hold=True as >> a kwarg (or set it globally), the data are plotted without the errorbars. I >> believe it is because th

Re: [Matplotlib-users] errorbar plot requires hold=True

2010-09-30 Thread Benjamin Root
On Thu, Sep 30, 2010 at 1:28 PM, Joey Richards wrote: > When I use the errorbar() routine to plot data, unless I set hold=True as a > kwarg (or set it globally), the data are plotted without the errorbars. I > believe it is because the routine first plots the error bars, then overplots > the dat

[Matplotlib-users] errorbar plot requires hold=True

2010-09-30 Thread Joey Richards
When I use the errorbar() routine to plot data, unless I set hold=True as a kwarg (or set it globally), the data are plotted without the errorbars. I believe it is because the routine first plots the error bars, then overplots the data points and for some reason the routine is clearing the axis

Re: [Matplotlib-users] errorbar plot caps

2008-05-06 Thread Michael Droettboom
That's a good one! Here's what I see happening: By default (without manually specifying zorder), all Collections are drawn before all Lines. In an errorbar, the data itself and the caps are both drawn using Lines, but the errorbar is drawn using a LineCollection. So what you're seeing is a s

[Matplotlib-users] errorbar plot caps

2008-05-06 Thread Christopher Brown
Hi mpl users, I have noticed that when making a figure using the errorbar function, a cap line will show up over a marker if they happen to fall on top of one another. The line connecting the caps is (properly) hidden under the marker. This behavior only occurs if the overlapping marker was pla