Re: Combine ErrorListPlot with another graphics
- To: mathgroup at smc.vnet.net
- Subject: [mg99044] Re: Combine ErrorListPlot with another graphics
- From: dh <dh at metrohm.com>
- Date: Fri, 24 Apr 2009 06:15:07 -0400 (EDT)
- References: <gsrqr1$r90$1@smc.vnet.net>
Hi, Show seems to work for me: =========================== Needs["ErrorBarPlots`"] g1 = ErrorListPlot[d = Table[{i, RandomReal[0.5]}, {i, 10}]] g2 = Plot[x, {x, 1, 10}] Show[g1, g2] =========================== Daniel guerom00 wrote: > Hello everyone, > > I want to combine an ErrorListPlot with another graphics but the Show > [] command does not seem to work with ErrorListPlot[] ??? > Any suggestions ? > > TIA >