There was an error while loading. Please reload this page.
1 parent a6c6399 commit 9fd0233Copy full SHA for 9fd0233
1 file changed
lib/matplotlib/axes/_axes.py
@@ -3150,8 +3150,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3150
draws error bars on a subset of the data. *errorevery* =N draws
3151
error bars on the points (x[::N], y[::N]).
3152
*errorevery* =(start, N) draws error bars on the points
3153
- (x[start::N], y[start::N]). e.g. errorevery=(6,3)
3154
- adds error bars to the data at (x[3], x[9], x[15], x[21], ...).
+ (x[start::N], y[start::N]). e.g. errorevery=(6, 3)
+ adds error bars to the data at (x[6], x[9], x[12], x[15], ...).
3155
Used to avoid overlapping error bars when two series share x-axis
3156
values.
3157
0 commit comments