 
 
 
 
 
 
RE: Errorbars in BOTH directions
- To: mathgroup at smc.vnet.net
- Subject: [mg31079] RE: [mg31064] Errorbars in BOTH directions
- From: "David Park" <djmp at earthlink.net>
- Date: Sun, 7 Oct 2001 03:11:45 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Ralf,
Yes. Check the specifications in MultipleListPlot.
To obtain an error bar with an x extension only just use, for example:
ErrorBar[{-0.5, 0.3}, {0, 0}]
This is a slight modification of the example in the MultipleListPlot Help.
MultipleListPlot[
    {2,
      {1.5, 3.2},
      {2.5, ErrorBar[0.3]},
      {{4.4, 5.2}, ErrorBar[{-0.5, 0.3}, {0, 0}]}, {{5.5, 2.1}, 
        ErrorBar[{-0.4, 0.3}, {-0.2, 0.5}]}},
    PlotRange -> All,
    Frame -> True];
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 
> From: Ralf Schulze [mailto:ralf-schulze at gmx.net]
To: mathgroup at smc.vnet.net
> 
> Hello folks.
> 
> Does anyone of you know how, or if, it is possible to create a 
> ListPlot with
> errorbars in the x- and y-direction? ErrorListPlot only draws 
> errorbars in the
> y-direction.
> 
> I searched through the help but couldn't find anything.
> 
> Thank you
> 
> Ralf
> 

