我对 python 和 matplotlib 很陌生,这个网站对我帮助很大。但我找不到关于这个主题的完整答案。
我想使用 matplotlib 注释 3d 图的点,所以经过一些研究后,我发现代码很平静: Matplotlib: Annotating a 3D scatter plot
import pylab
from mpl_toolkits.mplot3d import Axes3D
from mpl_toolkits.mplot3d import proj3d
fig = pylab.figure()
ax = fig.add_subplot(111, projection = '3d')
x = y = z = [1, 2, 3]
sc = ax.scatter(x,y,z)
# now try to get the display coordinates of the first point
x2, y2, _ = proj3d.proj_transform(1,1,1, ax.get_proj())
label = pylab.annotate(
"this",
xy = (x2, y2), xytext = (-20, 20),
textcoords = 'offset points', ha = 'right', va = 'bottom',
bbox = dict(boxstyle = 'round,pad=0.5', fc = 'yellow', alpha = 0.5),
arrowprops = dict(arrowstyle = '->', connectionstyle = 'arc3,rad=0'))
def update_position(e):
x2, y2, _ = proj3d.proj_transform(1,1,1, ax.get_proj())
label.xy = x2,y2
label.update_positions(fig.canvas.renderer)
fig.canvas.draw()
fig.canvas.mpl_connect('button_release_event', update_position)
pylab.show()
但问题是,我设法用这段代码只更新最后一个标签,我试图在 update_position(e) 函数中做一些循环。但我肯定错过了一些东西。到目前为止,我使用了 Axes3D.text(x, y, z, s, zdir) 函数,但它看起来并不是很好。
谢谢 !