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

Skip to content

Commit b5dafba

Browse files
author
Benedikt J. Daurer
authored
Merge pull request #1 from NelleV/Seraf69_docs_errorbar_fix
DOC minor fixes on the documentation of errorbar
2 parents 8ae6f94 + 98f4ac1 commit b5dafba

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2725,35 +2725,35 @@ def errorbar(self, x, y, yerr=None, xerr=None,
27252725
A matplotlib color arg which gives the color the errorbar lines;
27262726
if None, use the color of the line connecting the markers.
27272727
2728-
elinewidth: scalar, optional, default: None
2728+
elinewidth : scalar, optional, default: None
27292729
The linewidth of the errorbar lines. If None, use the linewidth.
27302730
2731-
capsize: scalar, optional, default: None
2731+
capsize : scalar, optional, default: None
27322732
The length of the error bar caps in points; if None, it will
27332733
take the value from ``errorbar.capsize``
27342734
:data:`rcParam<matplotlib.rcParams>`.
27352735
2736-
capthick: scalar, optional, default: None
2736+
capthick : scalar, optional, default: None
27372737
An alias kwarg to markeredgewidth (a.k.a. - mew). This
27382738
setting is a more sensible name for the property that
27392739
controls the thickness of the error bar cap in points. For
27402740
backwards compatibility, if mew or markeredgewidth are given,
27412741
then they will over-ride capthick. This may change in future
27422742
releases.
27432743
2744-
barsabove: bool, optional, default: False
2744+
barsabove : bool, optional, default: False
27452745
if True , will plot the errorbars above the plot
27462746
symbols. Default is below.
27472747
2748-
lolims / uplims / xlolims / xuplims: bool, optional, default:None
2748+
lolims / uplims / xlolims / xuplims : bool, optional, default:None
27492749
These arguments can be used to indicate that a value gives
27502750
only upper/lower limits. In that case a caret symbol is
27512751
used to indicate this. lims-arguments may be of the same
27522752
type as *xerr* and *yerr*. To use limits with inverted
27532753
axes, :meth:`set_xlim` or :meth:`set_ylim` must be called
27542754
before :meth:`errorbar`.
27552755
2756-
errorevery: positive integer, optional, default:1
2756+
errorevery : positive integer, optional, default:1
27572757
subsamples the errorbars. e.g., if errorevery=5, errorbars for
27582758
every 5-th datapoint will be plotted. The data plot itself still
27592759
shows all data points.
@@ -2762,11 +2762,10 @@ def errorbar(self, x, y, yerr=None, xerr=None,
27622762
-------
27632763
plotline : :class:`~matplotlib.lines.Line2D` instance
27642764
x, y plot markers and/or line
2765-
caplines :
2766-
list of error bar cap :class:`~matplotlib.lines.Line2D` instances
2767-
barlinecols :
2768-
list of :class:`~matplotlib.collections.LineCollection` instances
2769-
for the horizontal and vertical error ranges.
2765+
caplines : list of :class:`~matplotlib.lines.Line2D` instances
2766+
error bar cap
2767+
barlinecols : list of :class:`~matplotlib.collections.LineCollection` instances
2768+
horizontal and vertical error ranges.
27702769
27712770
Other Parameters
27722771
----------------

0 commit comments

Comments
 (0)