Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit baafc99

Browse files
committed
document new features
1 parent eb5bfe4 commit baafc99

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Errorbar plots can shift which points have error bars
2+
----------------------
3+
4+
Previously, `plt.errorbar()` accepted a kwarg `errorevery` such that the
5+
command `plt.errorbar(x, y, yerr, errorevery=6)` would add error bars to
6+
datapoints `x[::6], y[::6]`.
7+
8+
`errorbar()` now also accepts a tuple for `errorevery` such that
9+
`plt.errorbar(x, y, yerr, errorevery=(start, N))` adds error bars to points
10+
`x[start::N], y[start::N]`.

0 commit comments

Comments
 (0)