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

Skip to content

DOC: Document verts in scatter #6963

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
Oct 19, 2016
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
11 changes: 9 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3812,8 +3812,9 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
verts=None, edgecolors=None,
**kwargs):
"""
Make a scatter plot of x vs y, where x and y are sequence like objects
of the same length.
Make a scatter plot of `x` vs `y`

Marker size is scaled by `s` and marker color is mapped to `c`

Parameters
----------
Expand Down Expand Up @@ -3861,6 +3862,12 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
linewidths : scalar or array_like, optional, default: None
If None, defaults to (lines.linewidth,).

verts : sequence of (x, y), optional
If `marker` is None, these vertices will be used to
construct the marker. The center of the marker is located
at (0,0) in normalized units. The overall marker is rescaled
by ``s``.

edgecolors : color or sequence of color, optional, default: None
If None, defaults to 'face'

Expand Down