> "Charlie" == Charlie Moad <[EMAIL PROTECTED]> writes:
Charlie> On 6/2/06, David S. <[EMAIL PROTECTED]> wrote:
>> I have just installed numpy-0.9.8, scipy-0.4.9, and
>> matplotlib-0.87.2 on a Windows machine with Python 2.4.2.
Charlie> matplotlib-0.87.2 requires numpy-0.9.6.
> "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 =
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