Re: [Matplotlib-users] Confidence Interval

2006-06-03 Thread John Hunter
> "Willi" == Willi Richert <[EMAIL PROTECTED]> writes: Willi> Hi, is there a way to display confidence intervals other Willi> than using Polygon like, e.g. Willi> ax = subplot(111) # make the shaded region upperPoints = Willi> zip(runs, upperConf) upperPoints.reverse() verts =

[Matplotlib-users] Confidence Interval

2006-06-03 Thread Willi Richert
Hi, is there a way to display confidence intervals other than using Polygon like, e.g. ax = subplot(111) # make the shaded region upperPoints = zip(runs, upperConf) upperPoints.reverse() verts = [(runs[0], upperConf[0])] + zip(runs, lowerConf) + upperPoints poly = Polygon(verts, facecolor=0.6, e