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

Skip to content

Axes3d doc typo #4805

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 2 commits into from
Jul 28, 2015
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
6 changes: 3 additions & 3 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@ def plot(self, xs, ys, *args, **kwargs):
========== ================================================
Argument Description
========== ================================================
*xs*, *ys* X, y coordinates of vertices
*xs*, *ys* x, y coordinates of vertices

*zs* z value(s), either one for all points or one for
each point.
Expand Down Expand Up @@ -2197,10 +2197,10 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c='b', depthshade=True,
the same plane. Default is 0.
*zdir* Which direction to use as z ('x', 'y' or 'z')
when plotting a 2D set.
*s* size in points^2. It is a scalar or an array of the
*s* Size in points^2. It is a scalar or an array of the
same length as *x* and *y*.

*c* a color. *c* can be a single color format string, or a
*c* A color. *c* can be a single color format string, or a
sequence of color specifications of length *N*, or a
sequence of *N* numbers to be mapped to colors using the
*cmap* and *norm* specified via kwargs (see below). Note
Expand Down