查找图中点的坐标

时间:2014-02-24 09:38:37

标签: python matplotlib

我使用python生成了一个散点图。

如何找出一个点的坐标?

from matplotlib import pyplot as plt

x = [min(max(L2.real, 0.2), 0.3) for L2 in L]      

y = [min(max(L2.imag, 0), 0.004) for L2 in L]

plt.scatter(x, y)

plt.show()

1 个答案:

答案 0 :(得分:0)

第i个点的坐标为(x[i], y[i])。这就是你问的问题吗?