Of course there is everything in pyplot.py
Code excerpt:
def scatter(x, y, s=20, c=None, marker='o', cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, verts=None, edgecolors=None, hold=None, data=None, **kwargs):
The size is set to 20 s=20 , and the shape of the marker is a circle marker='o' , which is consistent with their documentation
source share