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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
15 matches
Mail list logo