MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Mathematica 6: How to plot multiple lists with error bars?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg89243] Re: [mg89231] Mathematica 6: How to plot multiple lists with error bars?
  • From: Curtis Osterhoudt <cfo at lanl.gov>
  • Date: Sun, 1 Jun 2008 03:35:52 -0400 (EDT)
  • Organization: LANL
  • References: <200805300657.CAA17843@smc.vnet.net>
  • Reply-to: cfo at lanl.gov

Hm. Works for me. If it continues to not work for you, try making the plots 
individually and then combining them with Show (as in the second example 
below):

Needs["ErrorBarPlots`"]

ErrorListPlot[{Table[{i + 1, RandomReal[0.5]}, {i, 10}], 
     Table[{i, RandomReal[0.5]}, {i, 10}]}]



Show[ErrorListPlot /@ {Table[{i + 1, RandomReal[0.5]}, {i, 10}], 
       Table[{i, RandomReal[0.5]}, {i, 10}]}]

    Hope that helps!
             C

On Friday 30 May 2008 00:57:01 Kezhao Zhang wrote:
> I want to plot multiple series of data points in Mathematica 6. Each
> data point has an error bar. ErrorListPlot plots only a single list.
> Is there a way to plot multiple lists with error bars?
>
> Thanks.
>
> Kezhao



-- 
==========================================================
Curtis Osterhoudt
cfo at remove_this.lanl.and_this.gov
PGP Key ID: 0x4DCA2A10
Please avoid sending me Word or PowerPoint attachments
See http://www.gnu.org/philosophy/no-word-attachments.html
==========================================================


  • Prev by Date: Re: NDSolve with arrays
  • Next by Date: Out of memory.
  • Previous by thread: Re: Mathematica 6: How to plot multiple lists with error bars?
  • Next by thread: Default location for Exported files?