I have two numpy arrays x and y. Now I want to save a scatter plot. Be default the size of the markers can be changed with the 's' parameter in the scatter plot.
x = np.array([1,2,3,4])
y = np.array([2,3,4,5])
plt.scatter(x,y, s=0.1)
But the s option is given in points and not units of the x and y axis. Is there a way to do this?