作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 pandas 数据框,包括以下列:
label = ('A' , 'D' , 'K', 'L', 'P')
x = (1 , 4 , 9, 6, 4)
y = (2 , 6 , 5, 8, 9)
plot_id = (1 , 1 , 2, 2, 3)
我想创建 3 个独立的散点图 - 每个 plot_id
一个。因此,第一个散点图应包含 plot_id == 1
的所有条目,以及点 (1,2) 和 (4,6)。每个数据点都应该用label
来标记。因此,第一个图应该具有标签 A
和 B
。
我知道我可以使用 annotate
进行标记,并且我熟悉 for
循环。但我不知道如何将两者结合起来。
我希望我可以发布我迄今为止所做的更好的代码片段 - 但这太糟糕了。这是:
for i in range(len(df.plot_id)):
plt.scatter(df.x[i],df.y[i])
plt.show()
这就是我所得到的一切 - 不幸的是。关于如何进行的任何想法?
最佳答案
更新答案
保存单独的图像文件
def annotate(row, ax):
ax.annotate(row.label, (row.x, row.y),
xytext=(10, -5), textcoords='offset points')
for pid, grp in df.groupby('plot_id'):
ax = grp.plot.scatter('x', 'y')
grp.apply(annotate, ax=ax, axis=1)
plt.savefig('{}.png'.format(pid))
plt.close()
旧答案
对于那些想要这样的东西的人
def annotate(row, ax):
ax.annotate(row.label, (row.x, row.y),
xytext=(10, -5), textcoords='offset points')
fig, axes = plt.subplots(df.plot_id.nunique(), 1)
for i, (pid, grp) in enumerate(df.groupby('plot_id')):
ax = axes[i]
grp.plot.scatter('x', 'y', ax=ax)
grp.apply(annotate, ax=ax, axis=1)
fig.tight_layout()
设置
label = ('A' , 'D' , 'K', 'L', 'P')
x = (1 , 4 , 9, 6, 4)
y = (2 , 6 , 5, 8, 9)
plot_id = (1 , 1 , 2, 2, 3)
df = pd.DataFrame(dict(label=label, x=x, y=y, plot_id=plot_id))
关于python-3.x - 如何在循环 pandas 数据帧时标记 matplotlib 散点图中的数据点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40979026/
我是一名优秀的程序员,十分优秀!