@@ -2793,7 +2793,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2793
2793
releases.
2794
2794
2795
2795
barsabove : bool, optional, default: False
2796
- if True , will plot the errorbars above the plot
2796
+ If True , will plot the errorbars above the plot
2797
2797
symbols. Default is below.
2798
2798
2799
2799
lolims / uplims / xlolims / xuplims : bool, optional, default:None
@@ -2805,18 +2805,22 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2805
2805
before :meth:`errorbar`.
2806
2806
2807
2807
errorevery : positive integer, optional, default:1
2808
- subsamples the errorbars. e.g., if errorevery=5, errorbars for
2808
+ Subsamples the errorbars. e.g., if errorevery=5, errorbars for
2809
2809
every 5-th datapoint will be plotted. The data plot itself still
2810
2810
shows all data points.
2811
2811
2812
2812
Returns
2813
2813
-------
2814
- plotline : :class:`~matplotlib.lines.Line2D` instance
2815
- x, y plot markers and/or line
2816
- caplines : list of :class:`~matplotlib.lines.Line2D` instances
2817
- error bar cap
2818
- barlinecols : list of :class:`~matplotlib.collections.LineCollection`
2819
- horizontal and vertical error ranges.
2814
+ :class:`~.container.ErrorbarContainer`
2815
+ The container contains:
2816
+
2817
+ - plotline: :class:`~matplotlib.lines.Line2D` instance of
2818
+ x, y plot markers and/or line.
2819
+ - caplines: A tuple of :class:`~matplotlib.lines.Line2D` instances
2820
+ of the error bar caps.
2821
+ - barlinecols: A tuple of
2822
+ :class:`~matplotlib.collections.LineCollection` with the
2823
+ horizontal and vertical error ranges.
2820
2824
2821
2825
Other Parameters
2822
2826
----------------
0 commit comments