Matplotlib:注释3D散点图

我正在尝试使用Matplotlib生成3D散点图。我想在此处注释单个点,例如2D情况: Matplotlib:如何为散点图放置单个标签。


我尝试使用此功能,并查阅了Matplotlib,但发现该库似乎不支持3D注释。有谁知道如何做到这一点?


谢谢!


慕侠2389804
浏览 978回答 3
3回答

墨色风雨

计算该点的2D位置,并使用它创建注释。如果需要与图形交互,则可以在释放鼠标时重新计算位置。import pylabfrom mpl_toolkits.mplot3d import Axes3Dfrom mpl_toolkits.mplot3d import proj3dfig = 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 pointx2, 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()
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python