We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
quoting @jreback
maybe
s = Series
s.plot(error_bar = [-1,1])
equiv to:
df = DataFrame(dict(s = s, top = s.std(), bot = -s.std())).plot()
bottom seems the right way to do this....