Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slight tweak to the documentation of errorbar #1743

Merged
merged 2 commits into from Feb 17, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions lib/matplotlib/axes.py
Expand Up @@ -5320,11 +5320,12 @@ def errorbar(self, x, y, yerr=None, xerr=None,
Optional keyword arguments:

*xerr*/*yerr*: [ scalar | N, Nx1, or 2xN array-like ]
If a scalar number, len(N) array-like object, or an Nx1 array-like
object, errorbars are drawn +/- value.
If a scalar number, len(N) array-like object, or an Nx1
array-like object, errorbars are drawn at +/-value relative
to the data.

If a sequence of shape 2xN, errorbars are drawn at -row1 and
+row2
If a sequence of shape 2xN, errorbars are drawn at -row1
and +row2 relative to the data.

*fmt*: '-'
The plot format symbol. If *fmt* is *None*, only the
Expand Down