hi, i'm using the exact code pasted below, and copied from:
http://matplotlib.sourceforge.net/examples/pylab_examples/errorbar_demo.html?highlight=errorbar

i see the vertical error lines, but i'm not able to see the 'cap' as
in the codex above, i've tried changing a few parameters in my
matplotlibrc as well as
different backends.
i'm running matplotlib checked out from svn today. is there something
i can try to make the caps appear?
thanks,
-brent





from pylab import *

t = arange(0.1, 4, 0.1)
s = exp(-t)
e = 0.1*abs(randn(len(s)))
f = 0.1*abs(randn(len(s)))
g = 2*e
h = 2*f

figure()
errorbar(t, s, e, fmt='o')             # vertical symmetric
show()

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to