有人知道如何修改情节下方状态栏中的“x”和“y”吗?
我想将其更改为“经度”和“纬度”,是否可以在matplotlib中使用?
答案 0 :(得分:3)
您可以重新分配Axes的format_coord
方法,如以下示例所示(改编自here和here):
import matplotlib.pyplot as plt
import numpy as np
fig,ax = plt.subplots(1)
ax.pcolormesh(np.random.rand(20,20))
def format_coord(x, y):
return 'Longitude={:6.3f}, Latitude={:6.3f}'.format(x, y)
ax.format_coord = format_coord
plt.show()
或者,在单行中,您可以使用lambda
函数:
ax.format_coord = lambda x, y: "Longitude={:6.3f}, Latitude={:6.3f}".format(x,y)