I use the following code to place two plots on left and right of the plane. However, as you can see the plots have overlap. How can I fix that?
fig = plt.figure(figsize = (16,8))
ax = fig.add_subplot(1, 1, 1)
ax.scatter( F1, F2, c=colors )
ax2 = fig.add_subplot(1, 2, 2)
ax2.scatter( F1, F3, c=colors )
