0

我想在 python3 中使用 matplotlib 中的 ginput 包,以便能够单击我的数据图上的点,并显示 x,y 坐标并将其保存到变量中。我使用 ginput 的代码如下。

plt.ginput(n=0, timeout=0, show_clicks=True, mouse_add=1, mouse_pop=3, mouse_stop=2)
x = plt.ginput(3)
print("clicked", x)
plt.show()

我的输出只显示我的图表,当我将鼠标悬停在数据点上时,它不会显示为箭头,并且点击不起作用。它只是继续运行,只显示我的图表而不是任何坐标。

4

0 回答 0