如何为 matplotlib 散点图放置单个标签?
Posted
技术标签:
【中文标题】如何为 matplotlib 散点图放置单个标签?【英文标题】:How to put individual tags for a matplotlib scatter plot? 【发布时间】:2011-07-06 01:11:19 【问题描述】:我正在尝试在 matplotlib 中绘制散点图,但找不到将标签添加到点的方法。例如:
scatter1=plt.scatter(data1["x"], data1["y"], marker="o",
c="blue",
facecolors="white",
edgecolors="blue")
我希望“y”中的点具有“点 1”、“点 2”等标签。我想不通。
【问题讨论】:
【参考方案1】:也许用plt.annotate:
import numpy as np
import matplotlib.pyplot as plt
N = 10
data = np.random.random((N, 4))
labels = ['point0'.format(i) for i in range(N)]
plt.subplots_adjust(bottom = 0.1)
plt.scatter(
data[:, 0], data[:, 1], marker='o', c=data[:, 2], s=data[:, 3] * 1500,
cmap=plt.get_cmap('Spectral'))
for label, x, y in zip(labels, data[:, 0], data[:, 1]):
plt.annotate(
label,
xy=(x, y), 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'))
plt.show()
【讨论】:
这就是我要说的。文档链接:matplotlib.sourceforge.net/api/… 演示链接:matplotlib.sourceforge.net/examples/pylab_examples/… @ubuntu 是否可以使用数字(或标签)代替点? @Vladtn:您可以通过重新定义labels
变量来更改注释。
@Vladtn:您可以通过省略 plt.scatter
来删除圈子。您可以使用plt.annotate(label, xy = (x, y), xytext = (0, 0), textcoords = 'offset points')
在图像上放置任意文本。注意xytext = (0, 0)
表示没有偏移,省略arrowprops
会导致plt.annotate
不绘制箭头。
@OParker:将'point0'.format(i)
更改为'point0'.format(i+1)
。或者,您可以将 range
: ['point0'.format(i) for i in range(N)]
更改为 ['point0'.format(i) for i in range(1,N+1)]
。以上是关于如何为 matplotlib 散点图放置单个标签?的主要内容,如果未能解决你的问题,请参考以下文章
100天精通Python(可视化篇)——第82天:matplotlib绘制不同种类炫酷散点图参数说明+代码实战(二维散点图三维散点图散点图矩阵)