From: <jd...@us...> - 2009-06-14 17:34:41
|
Revision: 7220 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7220&view=rev Author: jdh2358 Date: 2009-06-14 17:34:40 +0000 (Sun, 14 Jun 2009) Log Message: ----------- fixed errorbar Nx2 docstring bug as described in sf bug 2804502 Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-06-14 17:24:45 UTC (rev 7219) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-06-14 17:34:40 UTC (rev 7220) @@ -4725,12 +4725,12 @@ Optional keyword arguments: - *xerr*/*yerr*: [ scalar | N, Nx1, Nx2 array-like ] + *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 rank-1, Nx2 Numpy array, errorbars are drawn at -column1 and - +column2 + If a rank-1, 2xN numpy array, errorbars are drawn at -row1 and + +row2 *fmt*: '-' The plot format symbol for *y*. If *fmt* is *None*, just plot the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |