Skip to content

Commit

Permalink
add references to axes methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Kislovskiy committed Oct 9, 2021
1 parent 0a7013a commit 8d1edba
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -2103,16 +2103,9 @@ def contour(self, X, Y, Z, *args,
Parameters
----------
X, Y : array-like,
*X* and *Y* are x-y coordinates, specified as 2D arrays of the same
size as *Z*. `numpy.meshgrid` function could be used to create *X*
and *Y* coordinate matrices from coordinate vectors.
If ``size(Z) == [N, N]`` the *X* and *Y* matrices could be
specified as 1D arrays, where ``len(X) == len(Y) == N``
Z : array-like,
*Z* is a 2D array that specifies the height values at each x-y
coordinate over which the contour is drawn. Z must have at least
two rows and two columns.
X, Y, Z : array-like,
Input data. See `~matplotlib.axes.Axes.contour` for acceptable
data shapes.
extend3d : bool, default: False
Whether to extend contour in 3D.
stride : int
Expand Down Expand Up @@ -2156,7 +2149,8 @@ def tricontour(self, *args,
Parameters
----------
X, Y, Z : array-like
Input data.
Input data. See `~matplotlib.axes.Axes.tricontour` for acceptable
data shapes.
extend3d : bool, default: False
Whether to extend contour in 3D.
stride : int
Expand Down Expand Up @@ -2214,7 +2208,8 @@ def contourf(self, X, Y, Z, *args, zdir='z', offset=None, **kwargs):
Parameters
----------
X, Y, Z : array-like
Input data.
Input data. See `~matplotlib.axes.Axes.contourf` for acceptable
data shapes.
zdir : {'x', 'y', 'z'}, default: 'z'
The direction to use.
offset : float, optional
Expand Down Expand Up @@ -2252,7 +2247,8 @@ def tricontourf(self, *args, zdir='z', offset=None, **kwargs):
Parameters
----------
X, Y, Z : array-like
Input data.
Input data. See `~matplotlib.axes.Axes.tricontourf` for acceptable
data shapes.
zdir : {'x', 'y', 'z'}, default: 'z'
The direction to use.
offset : float, optional
Expand Down Expand Up @@ -2333,7 +2329,7 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c=None, depthshade=True,
Parameters
----------
xs, ys : array-like
The data positions.
The data positions.
zs : float or array-like, default: 0
The z-positions. Either an array of the same length as *xs* and
*ys* or a single value to place all points in the same plane.
Expand Down

0 comments on commit 8d1edba

Please sign in to comment.