8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f664a9 commit 8c0a24eCopy full SHA for 8c0a24e
lib/matplotlib/pyplot.py
@@ -2835,12 +2835,12 @@ def quiverkey(Q, X, Y, U, label, **kw):
2835
def scatter(
2836
x, y, s=None, c=None, marker=None, cmap=None, norm=None,
2837
vmin=None, vmax=None, alpha=None, linewidths=None, verts=None,
2838
- edgecolors=None, *, data=None, **kwargs):
+ edgecolors=None, plotinvalid=False, *, data=None, **kwargs):
2839
__ret = gca().scatter(
2840
x, y, s=s, c=c, marker=marker, cmap=cmap, norm=norm,
2841
vmin=vmin, vmax=vmax, alpha=alpha, linewidths=linewidths,
2842
- verts=verts, edgecolors=edgecolors, **({"data": data} if data
2843
- is not None else {}), **kwargs)
+ verts=verts, edgecolors=edgecolors, plotinvalid=plotinvalid,
+ **({"data": data} if data is not None else {}), **kwargs)
2844
sci(__ret)
2845
return __ret
2846
0 commit comments