@@ -104,7 +104,7 @@ def get_title(self, loc="center"):
104
104
105
105
Returns
106
106
-------
107
- title : str
107
+ str
108
108
The title text string.
109
109
110
110
"""
@@ -145,7 +145,7 @@ def set_title(self, label, fontdict=None, loc=None, pad=None, **kwargs):
145
145
146
146
Returns
147
147
-------
148
- text : `.Text`
148
+ `.Text`
149
149
The matplotlib text instance representing the title
150
150
151
151
Other Parameters
@@ -379,7 +379,7 @@ def legend(self, *args, **kwargs):
379
379
380
380
Returns
381
381
-------
382
- legend : `~matplotlib.legend.Legend`
382
+ `~matplotlib.legend.Legend`
383
383
384
384
Other Parameters
385
385
----------------
@@ -708,7 +708,7 @@ def text(self, x, y, s, fontdict=None, **kwargs):
708
708
709
709
Returns
710
710
-------
711
- text : `.Text`
711
+ `.Text`
712
712
The created `.Text` instance.
713
713
714
714
Other Parameters
@@ -784,7 +784,7 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
784
784
785
785
Returns
786
786
-------
787
- line : `~matplotlib.lines.Line2D`
787
+ `~matplotlib.lines.Line2D`
788
788
789
789
Other Parameters
790
790
----------------
@@ -853,7 +853,7 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
853
853
854
854
Returns
855
855
-------
856
- line : `~matplotlib.lines.Line2D`
856
+ `~matplotlib.lines.Line2D`
857
857
858
858
Other Parameters
859
859
----------------
@@ -984,7 +984,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
984
984
985
985
Returns
986
986
-------
987
- rectangle : `~matplotlib.patches.Polygon`
987
+ `~matplotlib.patches.Polygon`
988
988
Horizontal span (rectangle) from (xmin, ymin) to (xmax, ymax).
989
989
990
990
Other Parameters
@@ -1036,7 +1036,7 @@ def axvspan(self, xmin, xmax, ymin=0, ymax=1, **kwargs):
1036
1036
1037
1037
Returns
1038
1038
-------
1039
- rectangle : `~matplotlib.patches.Polygon`
1039
+ `~matplotlib.patches.Polygon`
1040
1040
Vertical span (rectangle) from (xmin, ymin) to (xmax, ymax).
1041
1041
1042
1042
Other Parameters
@@ -1097,7 +1097,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
1097
1097
1098
1098
Returns
1099
1099
-------
1100
- lines : `~matplotlib.collections.LineCollection`
1100
+ `~matplotlib.collections.LineCollection`
1101
1101
1102
1102
Other Parameters
1103
1103
----------------
@@ -1175,7 +1175,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
1175
1175
1176
1176
Returns
1177
1177
-------
1178
- lines : `~matplotlib.collections.LineCollection`
1178
+ `~matplotlib.collections.LineCollection`
1179
1179
1180
1180
Other Parameters
1181
1181
----------------
@@ -1311,7 +1311,7 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
1311
1311
1312
1312
Returns
1313
1313
-------
1314
- list : list of `.EventCollection`
1314
+ list of `.EventCollection`
1315
1315
The `.EventCollection` that were added.
1316
1316
1317
1317
Notes
@@ -1574,8 +1574,8 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
1574
1574
1575
1575
Returns
1576
1576
-------
1577
- lines
1578
- A list of `.Line2D` objects representing the plotted data.
1577
+ list of `.Line2D`
1578
+ A list of lines representing the plotted data.
1579
1579
1580
1580
Other Parameters
1581
1581
----------------
@@ -2257,7 +2257,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
2257
2257
2258
2258
Returns
2259
2259
-------
2260
- container : `.BarContainer`
2260
+ `.BarContainer`
2261
2261
Container with all the bars and optionally errorbars.
2262
2262
2263
2263
Other Parameters
@@ -2530,7 +2530,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
2530
2530
2531
2531
Returns
2532
2532
-------
2533
- container : `.BarContainer`
2533
+ `.BarContainer`
2534
2534
Container with all the bars and optionally errorbars.
2535
2535
2536
2536
Other Parameters
@@ -2625,7 +2625,7 @@ def broken_barh(self, xranges, yrange, **kwargs):
2625
2625
2626
2626
Returns
2627
2627
-------
2628
- collection : `~.collections.BrokenBarHCollection`
2628
+ `~.collections.BrokenBarHCollection`
2629
2629
2630
2630
Other Parameters
2631
2631
----------------
@@ -2744,7 +2744,7 @@ def stem(self, *args, linefmt=None, markerfmt=None, basefmt=None, bottom=0,
2744
2744
2745
2745
Returns
2746
2746
-------
2747
- container : `.StemContainer`
2747
+ `.StemContainer`
2748
2748
The container may be treated like a tuple
2749
2749
(*markerline*, *stemlines*, *baseline*)
2750
2750
@@ -3164,7 +3164,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
3164
3164
3165
3165
Returns
3166
3166
-------
3167
- container : `.ErrorbarContainer`
3167
+ `.ErrorbarContainer`
3168
3168
The container contains:
3169
3169
3170
3170
- plotline: `.Line2D` instance of x, y plot markers and/or line.
@@ -3603,7 +3603,7 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3603
3603
3604
3604
Returns
3605
3605
-------
3606
- result : dict
3606
+ dict
3607
3607
A dictionary mapping each component of the boxplot to a list
3608
3608
of the `.Line2D` instances created. That dictionary has the
3609
3609
following keys (assuming vertical boxplots):
@@ -3879,7 +3879,7 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
3879
3879
3880
3880
Returns
3881
3881
-------
3882
- result : dict
3882
+ dict
3883
3883
A dictionary mapping each component of the boxplot to a list
3884
3884
of the `.Line2D` instances created. That dictionary has the
3885
3885
following keys (assuming vertical boxplots):
@@ -4364,7 +4364,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
4364
4364
4365
4365
Returns
4366
4366
-------
4367
- paths : `~matplotlib.collections.PathCollection`
4367
+ `~matplotlib.collections.PathCollection`
4368
4368
4369
4369
Other Parameters
4370
4370
----------------
@@ -4552,7 +4552,7 @@ def hexbin(self, x, y, C=None, gridsize=100, bins=None,
4552
4552
4553
4553
Returns
4554
4554
-------
4555
- polycollection : `~matplotlib.collections.PolyCollection`
4555
+ `~matplotlib.collections.PolyCollection`
4556
4556
A `.PolyCollection` defining the hexagonal bins.
4557
4557
4558
4558
- `.PolyCollection.get_offset` contains a Mx2 array containing
@@ -4929,7 +4929,7 @@ def arrow(self, x, y, dx, dy, **kwargs):
4929
4929
4930
4930
Returns
4931
4931
-------
4932
- arrow : `.FancyArrow`
4932
+ `.FancyArrow`
4933
4933
The created `.FancyArrow` object.
4934
4934
4935
4935
Notes
@@ -5432,7 +5432,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
5432
5432
5433
5433
Returns
5434
5434
-------
5435
- image : `~matplotlib.image.AxesImage`
5435
+ `~matplotlib.image.AxesImage`
5436
5436
5437
5437
Other Parameters
5438
5438
----------------
@@ -5698,7 +5698,7 @@ def pcolor(self, *args, shading=None, alpha=None, norm=None, cmap=None,
5698
5698
5699
5699
Returns
5700
5700
-------
5701
- collection : `matplotlib.collections.Collection`
5701
+ `matplotlib.collections.Collection`
5702
5702
5703
5703
Other Parameters
5704
5704
----------------
@@ -5951,7 +5951,7 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
5951
5951
5952
5952
Returns
5953
5953
-------
5954
- mesh : `matplotlib.collections.QuadMesh`
5954
+ `matplotlib.collections.QuadMesh`
5955
5955
5956
5956
Other Parameters
5957
5957
----------------
@@ -6164,7 +6164,7 @@ def pcolorfast(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
6164
6164
6165
6165
Returns
6166
6166
-------
6167
- image : `.AxesImage` or `.PcolorImage` or `.QuadMesh`
6167
+ `.AxesImage` or `.PcolorImage` or `.QuadMesh`
6168
6168
The return type depends on the type of grid:
6169
6169
6170
6170
- `.AxesImage` for a regular rectangular grid.
@@ -7554,7 +7554,7 @@ def spy(self, Z, precision=0, marker=None, markersize=None,
7554
7554
7555
7555
Returns
7556
7556
-------
7557
- ret : `~matplotlib.image.AxesImage` or `.Line2D`
7557
+ `~matplotlib.image.AxesImage` or `.Line2D`
7558
7558
The return type depends on the plotting style (see above).
7559
7559
7560
7560
Other Parameters
@@ -7648,7 +7648,7 @@ def matshow(self, Z, **kwargs):
7648
7648
7649
7649
Returns
7650
7650
-------
7651
- image : `~matplotlib.image.AxesImage`
7651
+ `~matplotlib.image.AxesImage`
7652
7652
7653
7653
Other Parameters
7654
7654
----------------
@@ -7742,7 +7742,7 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
7742
7742
7743
7743
Returns
7744
7744
-------
7745
- result : dict
7745
+ dict
7746
7746
A dictionary mapping each component of the violinplot to a
7747
7747
list of the corresponding collection instances created. The
7748
7748
dictionary has the following keys:
@@ -7842,7 +7842,7 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
7842
7842
7843
7843
Returns
7844
7844
-------
7845
- result : dict
7845
+ dict
7846
7846
A dictionary mapping each component of the violinplot to a
7847
7847
list of the corresponding collection instances created. The
7848
7848
dictionary has the following keys:
0 commit comments