How to draw a dot with PyPlot?

Try this

scatter([0], [0], s=25, color="red", marker="o")

https://matplotlib.org/stable/api/markers_api.html

1 Like