在二维图中的每个标记点上显示标签
我正在使用 Matplotlib 创建整体在 PC1 和 PC2 上的投影:
plt.figure(figsize=(5,4))
showProjection(ensemble, pca[:2])
plt.show ()
任何人都可以建议我如何标记每个标记点。每个点代表已解析的蛋白质 X 射线结构。我想检查哪个点代表每种蛋白质。是否可以在每个点之外绘制字符串标签?
I'm using Matplotlib to create a projection of the ensemble onto PC1 and PC2:
plt.figure(figsize=(5,4))
showProjection(ensemble, pca[:2])
plt.show ()
Can anyone suggest me on how to label each marker point. Each point represent solved X-ray structure of proteins. I want to check which point represent each protein. Is it possible to plot the string label besides each point?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
plt.text(x,y,str)
注释图像中的特定点。但是,它看起来应该属于showProjection
函数内部。这是你自己写的,还是从某个包导入的?You can annotate a specific point in the image using
plt.text(x,y,str)
. However, it looks like that will belong inside theshowProjection
function. Is that something you wrote yourself, or imported from some package?