Closed
Description
fig = plt.figure(figsize=(10,10))
gs = gridspec.GridSpec(1,1)
ax0 = plt.subplot(gs[0])
ax0.scatter([0],[1],s=20000)
ax0.scatter([0],[3],s=20000)
ax0.set_xlim(-2,2)
ax0.set_ylim(-5,5)
This result of the above code shows two intersecting circles.
But if I cancel the set_xlim/set_ylim step, these two circles are separated.
fig = plt.figure(figsize=(10,10))
gs = gridspec.GridSpec(1,1)
ax0 = plt.subplot(gs[0])
ax0.scatter([0],[1],s=20000)
ax0.scatter([0],[3],s=20000)
So how to find a more explicit way to decide the size of scatters?
Thanks!