Büyük puan kümeleriyle çalışıyorsanız, şunları kullanmanızı öneririm CKDtrees
:
import matplotlib.pyplot as plt
import numpy as np
import scipy.spatial
points = np.column_stack([np.random.rand(50), np.random.rand(50)])
fig, ax = plt.subplots()
coll = ax.scatter(points[:,0], points[:,1])
ckdtree = scipy.spatial.cKDTree(points)
kpie's
Buraya biraz cevap verdim . Bir kez ckdtree
oluşturulduktan sonra , en yakın noktaları anında ve bunlarla ilgili çeşitli bilgileri biraz çaba ile tanımlayabilirsiniz:
def closest_point_distance(ckdtree, x, y):
#returns distance to closest point
return ckdtree.query([x, y])[0]
def closest_point_id(ckdtree, x, y):
#returns index of closest point
return ckdtree.query([x, y])[1]
def closest_point_coords(ckdtree, x, y):
# returns coordinates of closest point
return ckdtree.data[closest_point_id(ckdtree, x, y)]
# ckdtree.data is the same as points
İmleç konumunun etkileşimli gösterimi.
En yakın noktanın koordinatlarının Gezinme Araç Çubuğu'nda görüntülenmesini istiyorsanız:
def val_shower(ckdtree):
#formatter of coordinates displayed on Navigation Bar
return lambda x, y: '[x = {}, y = {}]'.format(*closest_point_coords(ckdtree, x, y))
plt.gca().format_coord = val_shower(ckdtree)
plt.show()
Olayları kullanma.
Başka bir etkileşim türü istiyorsanız, etkinlikleri kullanabilirsiniz:
def onclick(event):
if event.inaxes is not None:
print(closest_point_coords(ckdtree, event.xdata, event.ydata))
fig.canvas.mpl_connect('motion_notify_event', onclick)
plt.show()