6

我有这样的简单情节:

matplotlib.pyplot as plt

pt_no = [1,2,3]
coord_x = [6035763.111, 6035765.251, 6035762.801]
coord_y = [6439524.100, 6439522.251, 6439518.298]

fig, ax = plt.subplots()
ax.scatter(coord_y, coord_x, marker='x')
ax.axes.get_xaxis().set_visible(False)
ax.axes.get_yaxis().set_visible(False)
for i, txt in enumerate(pt_no):
    ax.annotate(txt, (coord_y[i], coord_x[i]))

plt.show()

但是当您在图形上移动或按住光标时,绘图窗口的右下角显示的坐标看起来像 6.43953e + 06。
我怎样才能让我的输入坐标完全按原样显示,例如
6439518.298 而不是 6.43953e + 0

提前致谢

4

2 回答 2

10

ax.fmt_xdata属性可以设置为格式化显示字符串的函数。

例如:

ax.fmt_xdata = lambda x: "{0:f}".format(x)
ax.fmt_ydata = lambda x: "{0:f}".format(x)
于 2013-02-02T20:50:44.623 回答
8

您还可以通过设置完全覆盖默认标签format_coord

ax.format_coord = lambda x, y: "({0:f}, ".format(y) +  "{0:f})".format(x)

例如api文档

于 2013-02-02T21:49:56.990 回答