@@ -1053,11 +1053,11 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
10531053 y : scalar or sequence of scalar
10541054 y-indexes where to plot the lines.
10551055
1056- xmin, xmax : scalar or 1D array_like
1056+ xmin, xmax : scalar or 1D array-like
10571057 Respective beginning and end of each line. If scalars are
10581058 provided, all lines will have same length.
10591059
1060- colors : array_like of colors, optional, default: 'k'
1060+ colors : array-like of colors, optional, default: 'k'
10611061
10621062 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, optional
10631063
@@ -1128,14 +1128,14 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
11281128
11291129 Parameters
11301130 ----------
1131- x : scalar or 1D array_like
1131+ x : scalar or 1D array-like
11321132 x-indexes where to plot the lines.
11331133
1134- ymin, ymax : scalar or 1D array_like
1134+ ymin, ymax : scalar or 1D array-like
11351135 Respective beginning and end of each line. If scalars are
11361136 provided, all lines will have same length.
11371137
1138- colors : array_like of colors, optional, default: 'k'
1138+ colors : array-like of colors, optional, default: 'k'
11391139
11401140 linestyles : {'solid', 'dashed', 'dashdot', 'dotted'}, optional
11411141
@@ -1803,7 +1803,7 @@ def semilogx(self, *args, **kwargs):
18031803 basex : scalar, optional, default 10
18041804 Base of the x logarithm.
18051805
1806- subsx : array_like , optional
1806+ subsx : array-like , optional
18071807 The location of the minor xticks. If *None*, reasonable locations
18081808 are automatically chosen depending on the number of decades in the
18091809 plot. See `.Axes.set_xscale` for details.
@@ -1852,7 +1852,7 @@ def semilogy(self, *args, **kwargs):
18521852 basey : scalar, optional, default 10
18531853 Base of the y logarithm.
18541854
1855- subsy : array_like , optional
1855+ subsy : array-like , optional
18561856 The location of the minor yticks. If *None*, reasonable locations
18571857 are automatically chosen depending on the number of decades in the
18581858 plot. See `.Axes.set_yscale` for details.
@@ -2061,11 +2061,11 @@ def step(self, x, y, *args, where='pre', data=None, **kwargs):
20612061
20622062 Parameters
20632063 ----------
2064- x : array_like
2064+ x : array-like
20652065 1-D sequence of x positions. It is assumed, but not checked, that
20662066 it is uniformly increasing.
20672067
2068- y : array_like
2068+ y : array-like
20692069 1-D sequence of y levels.
20702070
20712071 fmt : str, optional
@@ -4290,10 +4290,10 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
42904290
42914291 Parameters
42924292 ----------
4293- x, y : scalar or array_like , shape (n, )
4293+ x, y : scalar or array-like , shape (n, )
42944294 The data positions.
42954295
4296- s : scalar or array_like , shape (n, ), optional
4296+ s : scalar or array-like , shape (n, ), optional
42974297 The marker size in points**2.
42984298 Default is ``rcParams['lines.markersize'] ** 2``.
42994299
@@ -4345,7 +4345,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
43454345 alpha : scalar, optional, default: None
43464346 The alpha blending value, between 0 (transparent) and 1 (opaque).
43474347
4348- linewidths : scalar or array_like , optional, default: None
4348+ linewidths : scalar or array-like , optional, default: None
43494349 The linewidth of the marker edges. Note: The default *edgecolors*
43504350 is 'face'. You may want to change this as well.
43514351 If *None*, defaults to :rc:`lines.linewidth`.
@@ -5707,10 +5707,10 @@ def pcolor(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
57075707
57085708 Parameters
57095709 ----------
5710- C : array_like
5710+ C : array-like
57115711 A scalar 2-D array. The values will be color-mapped.
57125712
5713- X, Y : array_like , optional
5713+ X, Y : array-like , optional
57145714 The coordinates of the quadrilateral corners. The quadrilateral
57155715 for ``C[i, j]`` has corners at::
57165716
@@ -5938,10 +5938,10 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
59385938
59395939 Parameters
59405940 ----------
5941- C : array_like
5941+ C : array-like
59425942 A scalar 2-D array. The values will be color-mapped.
59435943
5944- X, Y : array_like , optional
5944+ X, Y : array-like , optional
59455945 The coordinates of the quadrilateral corners. The quadrilateral
59465946 for ``C[i, j]`` has corners at::
59475947
@@ -6405,7 +6405,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
64056405
64066406 Default is ``False``.
64076407
6408- weights : (n, ) array_like or None, optional
6408+ weights : (n, ) array-like or None, optional
64096409 An array of weights, of the same shape as *x*. Each value in *x*
64106410 only contributes its associated weight towards the bin count
64116411 (instead of 1). If *normed* or *density* is ``True``,
@@ -6438,7 +6438,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
64386438
64396439 Default is ``False``
64406440
6441- bottom : array_like , scalar, or None
6441+ bottom : array-like , scalar, or None
64426442 Location of the bottom baseline of each bin. If a scalar,
64436443 the base line for each bin is shifted by the same amount.
64446444 If an array, each bin is shifted independently and the length
@@ -6487,7 +6487,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
64876487
64886488 Default is ``False``
64896489
6490- color : color or array_like of colors or None, optional
6490+ color : color or array-like of colors or None, optional
64916491 Color or sequence of colors, one per dataset. Default (``None``)
64926492 uses the standard line color sequence.
64936493
@@ -6850,25 +6850,25 @@ def hist2d(self, x, y, bins=10, range=None, density=False, weights=None,
68506850
68516851 Parameters
68526852 ----------
6853- x, y : array_like , shape (n, )
6853+ x, y : array-like , shape (n, )
68546854 Input values
68556855
6856- bins : None or int or [int, int] or array_like or [array, array]
6856+ bins : None or int or [int, int] or array-like or [array, array]
68576857
68586858 The bin specification:
68596859
68606860 - If int, the number of bins for the two dimensions
68616861 (nx=ny=bins).
68626862 - If ``[int, int]``, the number of bins in each dimension
68636863 (nx, ny = bins).
6864- - If array_like , the bin edges for the two dimensions
6864+ - If array-like , the bin edges for the two dimensions
68656865 (x_edges=y_edges=bins).
68666866 - If ``[array, array]``, the bin edges in each dimension
68676867 (x_edges, y_edges = bins).
68686868
68696869 The default value is 10.
68706870
6871- range : array_like shape(2, 2), optional, default: None
6871+ range : array-like shape(2, 2), optional, default: None
68726872 The leftmost and rightmost edges of the bins along each dimension
68736873 (if not specified explicitly in the bins parameters): ``[[xmin,
68746874 xmax], [ymin, ymax]]``. All values outside of this range will be
@@ -6878,7 +6878,7 @@ def hist2d(self, x, y, bins=10, range=None, density=False, weights=None,
68786878 Normalize histogram. *normed* is a deprecated synonym for this
68796879 parameter.
68806880
6881- weights : array_like , shape (n, ), optional, default: None
6881+ weights : array-like , shape (n, ), optional, default: None
68826882 An array of values w_i weighing each sample (x_i, y_i).
68836883
68846884 cmin : scalar, optional, default: None
0 commit comments