list_plot 中 x 轴和 y 轴的相同缩放比例

Same scaling for x-axis and y-axis in list_plot

我在 sage 中使用 list_plot 绘制点列表。如何将 x 轴和 y 轴的缩放比例设置为相同?在我的图中,单位正方形实际上是一个宽矩形。我希望它保持正方形。

设置参数aspect_ratio为1。例子:

list_plot([3, 1, 4, 1, 5, 9], aspect_ratio=1)

文档:2D Plotting