@@ -2725,35 +2725,35 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2725
2725
A matplotlib color arg which gives the color the errorbar lines;
2726
2726
if None, use the color of the line connecting the markers.
2727
2727
2728
- elinewidth: scalar, optional, default: None
2728
+ elinewidth : scalar, optional, default: None
2729
2729
The linewidth of the errorbar lines. If None, use the linewidth.
2730
2730
2731
- capsize: scalar, optional, default: None
2731
+ capsize : scalar, optional, default: None
2732
2732
The length of the error bar caps in points; if None, it will
2733
2733
take the value from ``errorbar.capsize``
2734
2734
:data:`rcParam<matplotlib.rcParams>`.
2735
2735
2736
- capthick: scalar, optional, default: None
2736
+ capthick : scalar, optional, default: None
2737
2737
An alias kwarg to markeredgewidth (a.k.a. - mew). This
2738
2738
setting is a more sensible name for the property that
2739
2739
controls the thickness of the error bar cap in points. For
2740
2740
backwards compatibility, if mew or markeredgewidth are given,
2741
2741
then they will over-ride capthick. This may change in future
2742
2742
releases.
2743
2743
2744
- barsabove: bool, optional, default: False
2744
+ barsabove : bool, optional, default: False
2745
2745
if True , will plot the errorbars above the plot
2746
2746
symbols. Default is below.
2747
2747
2748
- lolims / uplims / xlolims / xuplims: bool, optional, default:None
2748
+ lolims / uplims / xlolims / xuplims : bool, optional, default:None
2749
2749
These arguments can be used to indicate that a value gives
2750
2750
only upper/lower limits. In that case a caret symbol is
2751
2751
used to indicate this. lims-arguments may be of the same
2752
2752
type as *xerr* and *yerr*. To use limits with inverted
2753
2753
axes, :meth:`set_xlim` or :meth:`set_ylim` must be called
2754
2754
before :meth:`errorbar`.
2755
2755
2756
- errorevery: positive integer, optional, default:1
2756
+ errorevery : positive integer, optional, default:1
2757
2757
subsamples the errorbars. e.g., if errorevery=5, errorbars for
2758
2758
every 5-th datapoint will be plotted. The data plot itself still
2759
2759
shows all data points.
@@ -2762,11 +2762,10 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2762
2762
-------
2763
2763
plotline : :class:`~matplotlib.lines.Line2D` instance
2764
2764
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.
2770
2769
2771
2770
Other Parameters
2772
2771
----------------
0 commit comments