Skip to content

Commit 87eeb2d

Browse files
justinchan23tm9k1
authored andcommitted
Fix errorbar visualization (pandas-dev#23674)
1 parent 45eecbc commit 87eeb2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/visualization.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ Here is an example of one way to easily plot group means with standard deviation
14051405
# Plot
14061406
fig, ax = plt.subplots()
14071407
@savefig errorbar_example.png
1408-
means.plot.bar(yerr=errors, ax=ax)
1408+
means.plot.bar(yerr=errors, ax=ax, capsize=4)
14091409
14101410
.. ipython:: python
14111411
:suppress:

0 commit comments

Comments
 (0)