plot = k3d.plot()
plt_points = k3d.points(positions=pca_result,
point_size=0.3,colors=my_colors)
plot += plt_points
plt_points.shader='3d'
plot.display()
Is there a possibility to add on-click information to the k3d points?
(是否可以将点击信息添加到k3d点?)
For example: click on one of the points that are maybe in the wrong cluster and get their name
(例如:单击可能在错误群集中的点之一,然后获取其名称)
Are there other options to do this?
(还有其他选择吗?)
ask by gradyhorn translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…