Skip to content

Commit

Permalink
Fix errorbar visualization (pandas-dev#23674)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinchan23 authored and Pingviinituutti committed Feb 28, 2019
1 parent e64939e commit f4e4217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/visualization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ Here is an example of one way to easily plot group means with standard deviation
# Plot
fig, ax = plt.subplots()
@savefig errorbar_example.png
means.plot.bar(yerr=errors, ax=ax)
means.plot.bar(yerr=errors, ax=ax, capsize=4)
.. ipython:: python
:suppress:
Expand Down

0 comments on commit f4e4217

Please sign in to comment.