Thanks to visit codestin.com
Credit goes to github.com

Skip to content

DOC Update description of ax.contour method, resolves #21310 #21321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -2103,8 +2103,9 @@ def contour(self, X, Y, Z, *args,

Parameters
----------
X, Y, Z : array-like
Input data.
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 @@ -2148,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 @@ -2206,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 @@ -2244,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 @@ -2325,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