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

Skip to content

Commit 04900f1

Browse files
committed
Update pyplot.py via boilerplate.py.
1 parent a1b7970 commit 04900f1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/pyplot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2813,11 +2813,12 @@ def quiverkey(Q, X, Y, U, label, **kw):
28132813
def scatter(
28142814
x, y, s=None, c=None, marker=None, cmap=None, norm=None,
28152815
vmin=None, vmax=None, alpha=None, linewidths=None, verts=None,
2816-
edgecolors=None, *, data=None, **kwargs):
2816+
edgecolors=None, plotinvalid=False, *, data=None, **kwargs):
28172817
__ret = gca().scatter(
28182818
x=x, y=y, s=s, c=c, marker=marker, cmap=cmap, norm=norm,
28192819
vmin=vmin, vmax=vmax, alpha=alpha, linewidths=linewidths,
2820-
verts=verts, edgecolors=edgecolors, data=data, **kwargs)
2820+
verts=verts, edgecolors=edgecolors, plotinvalid=plotinvalid,
2821+
data=data, **kwargs)
28212822
sci(__ret)
28222823
return __ret
28232824

0 commit comments

Comments
 (0)