8000 DOC: Updating docstring to numpy doc format for errorbar by S-Alvanides · Pull Request #7032 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC: Updating docstring to numpy doc format for errorbar #7032

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

Merged
merged 14 commits into from
Sep 14, 2016
Merged
Prev Previous commit
Next Next commit
[WIP] DOC: Trying to fix intendation problems
  • Loading branch information
Benedikt Daurer committed Sep 8, 2016
commit 835fec6360e31e627e2d6bcfd758778bc4c5988a
5 changes: 2 additions & 3 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2774,9 +2774,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
markers. For example, this code makes big red squares with
thick green edges::

x,y,yerr = rand(3,10)
errorbar(x, y, yerr, marker='s',
mfc='red', mec='green', ms=20, mew=4)
x,y,yerr = rand(3,10)
errorbar(x, y, yerr, marker='s', mfc='red', mec='green', ms=20, mew=4)

where mfc, mec, ms and mew are aliases for the longer
property names, markerfacecolor, markeredgecolor, markersize
Expand Down
0