@@ -2028,11 +2028,11 @@ def step(self, x, y, *args, where='pre', data=None, **kwargs):
20282028 Parameters
20292029 ----------
20302030 x : array-like
2031- 1-D sequence of x positions. It is assumed, but not checked, that
2031+ 1D sequence of x positions. It is assumed, but not checked, that
20322032 it is uniformly increasing.
20332033
20342034 y : array-like
2035- 1-D sequence of y levels.
2035+ 1D sequence of y levels.
20362036
20372037 fmt : str, optional
20382038 A format string, e.g. 'g' for a green line. See `.plot` for a more
@@ -4200,7 +4200,7 @@ def invalid_shape_exception(csize, xsize):
42004200 "RGBA sequence, which should be avoided as value-"
42014201 "mapping will have precedence in case its length "
42024202 "matches with *x* & *y*. Please use the *color* "
4203- "keyword-argument or provide a 2-D array "
4203+ "keyword-argument or provide a 2D array "
42044204 "with a single row if you intend to specify "
42054205 "the same RGB or RGBA value for all points." )
42064206 valid_shape = False
@@ -4253,14 +4253,14 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
42534253
42544254 - A scalar or sequence of n numbers to be mapped to colors using
42554255 *cmap* and *norm*.
4256- - A 2-D array in which the rows are RGB or RGBA.
4256+ - A 2D array in which the rows are RGB or RGBA.
42574257 - A sequence of colors of length n.
42584258 - A single color format string.
42594259
42604260 Note that *c* should not be a single numeric RGB or RGBA sequence
42614261 because that is indistinguishable from an array of values to be
42624262 colormapped. If you want to specify the same RGB or RGBA value for
4263- all points, use a 2-D array with a single row. Otherwise, value-
4263+ all points, use a 2D array with a single row. Otherwise, value-
42644264 matching will have precedence in case of a size matching with *x*
42654265 and *y*.
42664266
@@ -4341,7 +4341,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
43414341 case all masks will be combined and only unmasked points will be
43424342 plotted.
43434343
4344- * Fundamentally, scatter works with 1-D arrays; *x*, *y*, *s*, and *c*
4344+ * Fundamentally, scatter works with 1D arrays; *x*, *y*, *s*, and *c*
43454345 may be input as N-D arrays, but within scatter they will be
43464346 flattened. The exception is *c*, which will be flattened only if its
43474347 size matches the size of *x* and *y*.
@@ -5597,7 +5597,7 @@ def pcolor(self, *args, shading=None, alpha=None, norm=None, cmap=None,
55975597 Parameters
55985598 ----------
55995599 C : array-like
5600- A scalar 2-D array. The values will be color-mapped.
5600+ A scalar 2D array. The values will be color-mapped.
56015601
56025602 X, Y : array-like, optional
56035603 The coordinates of the corners of quadrilaterals of a pcolormesh::
@@ -5623,7 +5623,7 @@ def pcolor(self, *args, shading=None, alpha=None, norm=None, cmap=None,
56235623 color ``C[i, j]`` will be centered on ``(X[i, j], Y[i, j])``.
56245624
56255625 If *X* and/or *Y* are 1-D arrays or column vectors they will be
5626- expanded as needed into the appropriate 2-D arrays, making a
5626+ expanded as needed into the appropriate 2D arrays, making a
56275627 rectangular grid.
56285628
56295629 shading : {'flat', 'nearest', 'auto'}, optional
@@ -5841,7 +5841,7 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
58415841 Parameters
58425842 ----------
58435843 C : array-like
5844- A scalar 2-D array. The values will be color-mapped.
5844+ A scalar 2D array. The values will be color-mapped.
58455845
58465846 X, Y : array-like, optional
58475847 The coordinates of the corners of quadrilaterals of a pcolormesh::
@@ -5869,7 +5869,7 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
58695869 interpolation is caried out between the quadrilateral corners.
58705870
58715871 If *X* and/or *Y* are 1-D arrays or column vectors they will be
5872- expanded as needed into the appropriate 2-D arrays, making a
5872+ expanded as needed into the appropriate 2D arrays, making a
58735873 rectangular grid.
58745874
58755875 cmap : str or `~matplotlib.colors.Colormap`, default: :rc:`image.cmap`
@@ -5970,7 +5970,7 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
59705970
59715971 **Differences between pcolor() and pcolormesh()**
59725972
5973- Both methods are used to create a pseudocolor plot of a 2-D array
5973+ Both methods are used to create a pseudocolor plot of a 2D array
59745974 using quadrilaterals.
59755975
59765976 The main difference lies in the created object and internal data
@@ -6300,7 +6300,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
63006300
63016301 Multiple data can be provided via *x* as a list of datasets
63026302 of potentially different length ([*x0*, *x1*, ...]), or as
6303- a 2-D ndarray in which each column is a dataset. Note that
6303+ a 2D ndarray in which each column is a dataset. Note that
63046304 the ndarray form is transposed relative to the list form.
63056305
63066306 Masked arrays are not supported.
@@ -7478,7 +7478,7 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
74787478
74797479 Returns
74807480 -------
7481- spectrum : 2-D array
7481+ spectrum : 2D array
74827482 Columns are the periodograms of successive segments.
74837483
74847484 freqs : 1-D array
0 commit comments