I'm generating a simple image with a scatter and two dots and I want the dots to be fully visible, but ax.autoscale_view() seems not to work properly. fig, ax = plt.subplots(figsize=(3, 3), dpi=150) ax.scatter([0, 1], [0, 1], s=2000) ax.autoscale_view() Am I doing something wrong? How can I get the dots to be fully visible no matter the marker size s? Continue reading...