 
 
 
 
 
 
Re: bar chart with error bars
- To: mathgroup at smc.vnet.net
- Subject: [mg33665] Re: [mg33649] bar chart with error bars
- From: BobHanlon at aol.com
- Date: Fri, 5 Apr 2002 01:30:37 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 4/4/02 7:45:14 PM, J.A.Solomon at city.ac.uk writes:
>is there a simple way to do this?
>
Needs["Graphics`Graphics`"];
expdata=Table[{x,.92 10^(.94 x)+
    Random[Real,{-1.0,1.0}]},{x,0.2,1.2,.1}];
bcexpdata=Map[Append[#,0.08]&,expdata];
erexpdata=Map[Append[#,1.0]&,expdata];
DisplayTogether[
    GeneralizedBarChart[bcexpdata],
    ErrorListPlot[erexpdata]];
Bob Hanlon
Chantilly, VA  USA

