| 2854 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |
| 2855 | @_autogen_docstring(Axes.scatter) |
| 2856 | def scatter( |
| 2857 | x, y, s=None, c=None, marker=None, cmap=None, norm=None, |
| 2858 | vmin=None, vmax=None, alpha=None, linewidths=None, verts=None, |
| 2859 | edgecolors=None, *, data=None, **kwargs): |
| 2860 | __ret = gca().scatter( |
| 2861 | x, y, s=s, c=c, marker=marker, cmap=cmap, norm=norm, |
| 2862 | vmin=vmin, vmax=vmax, alpha=alpha, linewidths=linewidths, |
| 2863 | verts=verts, edgecolors=edgecolors, **({"data": data} if data |
| 2864 | is not None else {}), **kwargs) |
| 2865 | sci(__ret) |
| 2866 | return __ret |
| 2867 | |
| 2868 | |
| 2869 | # Autogenerated by boilerplate.py. Do not edit as changes will be lost. |