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