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....