-
-
Couldn't load subscription status.
- Fork 19.2k
Closed
Labels
Milestone
Description
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....