MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / scatter

Function scatter

site-packages/matplotlib/pyplot.py:2856–2866  ·  view source on GitHub ↗
(
        x, y, s=None, c=None, marker=None, cmap=None, norm=None,
        vmin=None, vmax=None, alpha=None, linewidths=None, verts=None,
        edgecolors=None, *, data=None, **kwargs)

Source from the content-addressed store, hash-verified

2854# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2855@_autogen_docstring(Axes.scatter)
2856def 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.

Callers

nothing calls this directly

Calls 3

gcaFunction · 0.85
sciFunction · 0.85
scatterMethod · 0.45

Tested by

no test coverage detected