@@ -2103,8 +2103,9 @@ def contour(self, X, Y, Z, *args,
2103
2103
2104
2104
Parameters
2105
2105
----------
2106
- X, Y, Z : array-like
2107
- Input data.
2106
+ X, Y, Z : array-like,
2107
+ Input data. See `~matplotlib.axes.Axes.contour` for acceptable
2108
+ data shapes.
2108
2109
extend3d : bool, default: False
2109
2110
Whether to extend contour in 3D.
2110
2111
stride : int
@@ -2148,7 +2149,8 @@ def tricontour(self, *args,
2148
2149
Parameters
2149
2150
----------
2150
2151
X, Y, Z : array-like
2151
- Input data.
2152
+ Input data. See `~matplotlib.axes.Axes.tricontour` for acceptable
2153
+ data shapes.
2152
2154
extend3d : bool, default: False
2153
2155
Whether to extend contour in 3D.
2154
2156
stride : int
@@ -2206,7 +2208,8 @@ def contourf(self, X, Y, Z, *args, zdir='z', offset=None, **kwargs):
2206
2208
Parameters
2207
2209
----------
2208
2210
X, Y, Z : array-like
2209
- Input data.
2211
+ Input data. See `~matplotlib.axes.Axes.contourf` for acceptable
2212
+ data shapes.
2210
2213
zdir : {'x', 'y', 'z'}, default: 'z'
2211
2214
The direction to use.
2212
2215
offset : float, optional
@@ -2244,7 +2247,8 @@ def tricontourf(self, *args, zdir='z', offset=None, **kwargs):
2244
2247
Parameters
2245
2248
----------
2246
2249
X, Y, Z : array-like
2247
- Input data.
2250
+ Input data. See `~matplotlib.axes.Axes.tricontourf` for acceptable
2251
+ data shapes.
2248
2252
zdir : {'x', 'y', 'z'}, default: 'z'
2249
2253
The direction to use.
2250
2254
offset : float, optional
@@ -2325,7 +2329,7 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True,
2325
2329
Parameters
2326
2330
----------
2327
2331
xs, ys : array-like
2328
- The data positions.
2332
+ The data positions.
2329
2333
zs : float or array-like, default: 0
2330
2334
The z-positions. Either an array of the same length as *xs* and
2331
2335
*ys* or a single value to place all points in the same plane.
0 commit comments