8000 Axes3d doc typo by tomspur · Pull Request #4805 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

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 1 commit
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
Prev Previous commit
Axes3D.scatter: Fix minor typo in description
  • Loading branch information
tomspur committed Jul 28, 2015
commit 9333c3e579e6064461739ada25ebb47ef5b66193
4 changes: 2 additions & 2 deletions lib/mpl_toolkits/mplot3d/axes3d.py
6921
Original file line number Diff line number Diff line change
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
0