@@ -168,7 +168,7 @@ def set_title(self, label, fontdict=None, loc="center", **kwargs):
168
168
169
169
Other Parameters
170
170
----------------
171
- kwargs : text properties
171
+ ** kwargs : `~matplotlib. text.Text` properties
172
172
Other keyword arguments are text properties, see
173
173
:class:`~matplotlib.text.Text` for a list of valid text
174
174
properties.
@@ -212,7 +212,7 @@ def set_xlabel(self, xlabel, fontdict=None, labelpad=None, **kwargs):
212
212
213
213
Other Parameters
214
214
----------------
215
- kwargs : `~matplotlib.text.Text` properties
215
+ ** kwargs : `~matplotlib.text.Text` properties
216
216
217
217
See also
218
218
--------
@@ -243,7 +243,7 @@ def set_ylabel(self, ylabel, fontdict=None, labelpad=None, **kwargs):
243
243
244
244
Other Parameters
245
245
----------------
246
- kwargs : `~matplotlib.text.Text` properties
246
+ ** kwargs : `~matplotlib.text.Text` properties
247
247
248
248
See also
249
249
--------
@@ -590,7 +590,7 @@ def text(self, x, y, s, fontdict=None, withdash=False, **kwargs):
590
590
591
591
Other Parameters
592
592
----------------
593
- kwargs : `~matplotlib.text.Text` properties.
593
+ ** kwargs : `~matplotlib.text.Text` properties.
594
594
Other miscellaneous text parameters.
595
595
596
596
Examples
@@ -829,7 +829,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
829
829
830
830
Other Parameters
831
831
----------------
832
- kwargs : `~matplotlib.patches.Polygon` properties.
832
+ ** kwargs : `~matplotlib.patches.Polygon` properties.
833
833
834
834
%(Polygon)s
835
835
@@ -947,7 +947,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
947
947
948
948
Other Parameters
949
949
----------------
950
- kwargs : `~matplotlib.collections.LineCollection` properties.
950
+ ** kwargs : `~matplotlib.collections.LineCollection` properties.
951
951
952
952
See also
953
953
--------
@@ -1025,7 +1025,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
1025
1025
1026
1026
Other Parameters
1027
1027
----------------
1028
- kwargs : `~matplotlib.collections.LineCollection` properties.
1028
+ ** kwargs : `~matplotlib.collections.LineCollection` properties.
1029
1029
1030
1030
See also
1031
1031
--------
@@ -2736,7 +2736,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
2736
2736
2737
2737
Other Parameters
2738
2738
----------------
2739
- **kwargs : All other keyword arguments are passed on to the plot
2739
+ **kwargs :
2740
+ All other keyword arguments are passed on to the plot
2740
2741
command for the markers. For example, this code makes big red
2741
2742
squares with thick green edges::
2742
2743
@@ -3840,7 +3841,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
3840
3841
3841
3842
Other Parameters
3842
3843
----------------
3843
- kwargs : `~matplotlib.collections.Collection` properties
3844
+ ** kwargs : `~matplotlib.collections.Collection` properties
3844
3845
3845
3846
See Also
3846
3847
--------
@@ -4617,7 +4618,7 @@ def fill(self, *args, **kwargs):
4617
4618
4618
4619
Other Parameters
4619
4620
----------------
4620
- kwargs : :class:`~matplotlib.patches.Polygon` properties
4621
+ ** kwargs : :class:`~matplotlib.patches.Polygon` properties
4621
4622
4622
4623
Notes
4623
4624
-----
@@ -5063,7 +5064,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
5063
5064
5064
5065
Other Parameters
5065
5066
----------------
5066
- kwargs : `~matplotlib.artist.Artist` properties.
5067
+ ** kwargs : `~matplotlib.artist.Artist` properties.
5067
5068
5068
5069
See also
5069
5070
--------
@@ -5998,7 +5999,7 @@ def hist(self, x, bins=None, range=None, normed=False, weights=None,
5998
5999
5999
6000
Other Parameters
6000
6001
----------------
6001
- kwargs : `~matplotlib.patches.Patch` properties
6002
+ ** kwargs : `~matplotlib.patches.Patch` properties
6002
6003
6003
6004
See also
6004
6005
--------
@@ -7263,7 +7264,7 @@ def matshow(self, Z, **kwargs):
7263
7264
7264
7265
Other Parameters
7265
7266
----------------
7266
- kwargs : `~matplotlib.axes.Axes.imshow` arguments
7267
+ ** kwargs : `~matplotlib.axes.Axes.imshow` arguments
7267
7268
Sets `origin` to 'upper', 'interpolation' to 'nearest' and
7268
7269
'aspect' to equal.
7269
7270
0 commit comments