@@ -499,7 +499,7 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
499
499
500
500
Returns
501
501
-------
502
- :class:`~matplotlib.lines.Line2D`
502
+ line : :class:`~matplotlib.lines.Line2D`
503
503
504
504
Other Parameters
505
505
----------------
@@ -569,7 +569,7 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
569
569
570
570
Returns
571
571
-------
572
- :class:`~matplotlib.lines.Line2D`
572
+ line : :class:`~matplotlib.lines.Line2D`
573
573
574
574
Other Parameters
575
575
----------------
@@ -964,8 +964,9 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
964
964
Returns
965
965
-------
966
966
967
- A list of :class:`matplotlib.collections.EventCollection` objects that
968
- were added.
967
+ list : A list of :class:`~.collections.EventCollection` objects.
968
+ Contains the :class:`~.collections.EventCollection` that
969
+ were added.
969
970
970
971
Notes
971
972
-----
@@ -1849,7 +1850,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
1849
1850
1850
1851
Returns
1851
1852
-------
1852
- `.BarContainer`
1853
+ container : `.BarContainer`
1853
1854
Container with all the bars and optionally errorbars.
1854
1855
1855
1856
Other Parameters
@@ -1873,7 +1874,9 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
1873
1874
1874
1875
- scalar: symmetric +/- values for all bars
1875
1876
- shape(N,): symmetric +/- values for each bar
1876
- - shape(2,N): separate + and - values for each bar
1877
+ - shape(2,N): Separate - and + values for each bar. First row
1878
+ contains the lower errors, the second row contains the
1879
+ upper errors.
1877
1880
1878
1881
Default: None
1879
1882
@@ -2124,7 +2127,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
2124
2127
2125
2128
Returns
2126
2129
-------
2127
- `.BarContainer`
2130
+ container : `.BarContainer`
2128
2131
Container with all the bars and optionally errorbars.
2129
2132
2130
2133
Other Parameters
@@ -2148,7 +2151,9 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
2148
2151
2149
2152
- scalar: symmetric +/- values for all bars
2150
2153
- shape(N,): symmetric +/- values for each bar
2151
- - shape(2,N): separate + and - values for each bar
2154
+ - shape(2,N): Separate - and + values for each bar. First row
2155
+ contains the lower errors, the second row contains the
2156
+ upper errors.
2152
2157
2153
2158
Default: None
2154
2159
@@ -2235,7 +2240,7 @@ def broken_barh(self, xranges, yrange, **kwargs):
2235
2240
2236
2241
Returns
2237
2242
-------
2238
- : class:`matplotlib .collections.BrokenBarHCollection`
2243
+ collection : A : class:`~ .collections.BrokenBarHCollection`
2239
2244
2240
2245
Notes
2241
2246
-----
@@ -2327,8 +2332,8 @@ def stem(self, *args, linefmt=None, markerfmt=None, basefmt=None,
2327
2332
2328
2333
Returns
2329
2334
-------
2330
- :class:`~matplotlib.container.StemContainer`
2331
- The stemcontainer may be treated like a tuple
2335
+ container : :class:`~matplotlib.container.StemContainer`
2336
+ The container may be treated like a tuple
2332
2337
(*markerline*, *stemlines*, *baseline*)
2333
2338
2334
2339
@@ -2671,7 +2676,9 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2671
2676
2672
2677
- scalar: Symmetric +/- values for all data points.
2673
2678
- shape(N,): Symmetric +/-values for each data point.
2674
- - shape(2,N): Separate + and - values for each data point.
2679
+ - shape(2,N): Separate - and + values for each bar. First row
2680
+ contains the lower errors, the second row contains the
2681
+ upper errors.
2675
2682
- *None*: No errorbar.
2676
2683
2677
2684
fmt : plot format string, optional, default: ''
@@ -2719,7 +2726,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2719
2726
2720
2727
Returns
2721
2728
-------
2722
- :class:`~.container.ErrorbarContainer`
2729
+ container : :class:`~.container.ErrorbarContainer`
2723
2730
The container contains:
2724
2731
2725
2732
- plotline: :class:`~matplotlib.lines.Line2D` instance of
0 commit comments