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

Skip to content

Commit 99fb603

Browse files
committed
DOC: Document verts in scatter
close #6958
1 parent 4f8d25d commit 99fb603

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3811,8 +3811,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
38113811
vmin=None, vmax=None, alpha=None, linewidths=None,
38123812
verts=None, edgecolors=None,
38133813
**kwargs):
3814-
"""
3815-
Make a scatter plot of x vs y, where x and y are sequence like objects
3814+
"""Make a scatter plot of x vs y, where x and y are sequence like objects
38163815
of the same length.
38173816
38183817
Parameters
@@ -3861,6 +3860,11 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
38613860
linewidths : scalar or array_like, optional, default: None
38623861
If None, defaults to (lines.linewidth,).
38633862
3863+
verts : sequence of (x, y), optional
3864+
If `marker` is None, these vertices will be used to
3865+
construct the marker. The center of the marker is located
3866+
at (0,0) and the size is normalized.
3867+
38643868
edgecolors : color or sequence of color, optional, default: None
38653869
If None, defaults to 'face'
38663870

0 commit comments

Comments
 (0)