@@ -2103,16 +2103,9 @@ def contour(self, X, Y, Z, *args,
2103
2103
2104
2104
Parameters
2105
2105
----------
2106
- X, Y : array-like,
2107
- *X* and *Y* are x-y coordinates, specified as 2D arrays of the same
2108
- size as *Z*. `numpy.meshgrid` function could be used to create *X*
2109
- and *Y* coordinate matrices from coordinate vectors.
2110
- If ``size(Z) == [N, N]`` the *X* and *Y* matrices could be
2111
- specified as 1D arrays, where ``len(X) == len(Y) == N``
2112
- Z : array-like,
2113
- *Z* is a 2D array that specifies the height values at each x-y
2114
- coordinate over which the contour is drawn. Z must have at least
2115
- two rows and two columns.
2106
+ X, Y, Z : array-like,
2107
+ Input data. See `~matplotlib.axes.Axes.contour` for acceptable
2108
+ data shapes.
2116
2109
extend3d : bool, default: False
2117
2110
Whether to extend contour in 3D.
2118
2111
stride : int
@@ -2156,7 +2149,8 @@ def tricontour(self, *args,
2156
2149
Parameters
2157
2150
----------
2158
2151
X, Y, Z : array-like
2159
- Input data.
2152
+ Input data. See `~matplotlib.axes.Axes.tricontour` for acceptable
2153
+ data shapes.
2160
2154
extend3d : bool, default: False
2161
2155
Whether to extend contour in 3D.
2162
2156
stride : int
@@ -2214,7 +2208,8 @@ def contourf(self, X, Y, Z, *args, zdir='z', offset=None, **kwargs):
2214
2208
Parameters
2215
2209
----------
2216
2210
X, Y, Z : array-like
2217
- Input data.
2211
+ Input data. See `~matplotlib.axes.Axes.contourf` for acceptable
2212
+ data shapes.
2218
2213
zdir : {'x', 'y', 'z'}, default: 'z'
2219
2214
The direction to use.
2220
2215
offset : float, optional
@@ -2252,7 +2247,8 @@ def tricontourf(self, *args, zdir='z', offset=None, **kwargs):
2252
2247
Parameters
2253
2248
----------
2254
2249
X, Y, Z : array-like
2255
- Input data.
2250
+ Input data. See `~matplotlib.axes.Axes.tricontourf` for acceptable
2251
+ data shapes.
2256
2252
zdir : {'x', 'y', 'z'}, default: 'z'
2257
2253
The direction to use.
2258
2254
offset : float, optional
@@ -2333,7 +2329,7 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True,
2333
2329
Parameters
2334
2330
----------
2335
2331
xs, ys : array-like
2336
- The data positions.
2332
+ The data positions.
2337
2333
zs : float or array-like, default: 0
2338
2334
The z-positions. Either an array of the same length as *xs* and
2339
2335
*ys* or a single value to place all points in the same plane.
0 commit comments