@@ -2738,7 +2738,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2738
2738
releases.
2739
2739
2740
2740
barsabove : bool, optional, default: False
2741
- if True , will plot the errorbars above the plot
2741
+ If True , will plot the errorbars above the plot
2742
2742
symbols. Default is below.
2743
2743
2744
2744
lolims / uplims / xlolims / xuplims : bool, optional, default:None
@@ -2750,18 +2750,22 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2750
2750
before :meth:`errorbar`.
2751
2751
2752
2752
errorevery : positive integer, optional, default:1
2753
- subsamples the errorbars. e.g., if errorevery=5, errorbars for
2753
+ Subsamples the errorbars. e.g., if errorevery=5, errorbars for
2754
2754
every 5-th datapoint will be plotted. The data plot itself still
2755
2755
shows all data points.
2756
2756
2757
2757
Returns
2758
2758
-------
2759
- plotline : :class:`~matplotlib.lines.Line2D` instance
2760
- x, y plot markers and/or line
2761
- caplines : list of :class:`~matplotlib.lines.Line2D` instances
2762
- error bar cap
2763
- barlinecols : list of :class:`~matplotlib.collections.LineCollection`
2764
- horizontal and vertical error ranges.
2759
+ :class:`~.container.ErrorbarContainer`
2760
+ The container contains:
2761
+
2762
+ - plotline: :class:`~matplotlib.lines.Line2D` instance of
2763
+ x, y plot markers and/or line.
2764
+ - caplines: A tuple of :class:`~matplotlib.lines.Line2D` instances
2765
+ of the error bar caps.
2766
+ - barlinecols: A tuple of
2767
+ :class:`~matplotlib.collections.LineCollection` with the
2768
+ horizontal and vertical error ranges.
2765
2769
2766
2770
Other Parameters
2767
2771
----------------
0 commit comments