繁体   English   中英

如何在 Python Seaborn 的线图中的每个标记上添加值/标签?

[英]How to add values/ labels over each marker in lineplot in Python Seaborn?

我有一个 dataframe 由时间范围、库存和作为列的文本计数组成。 dataframe 看起来像这样

              Time Stock  Text
0   00:00 - 01:00  BBNI   371
1   00:00 - 01:00  BBRI   675
2   00:00 - 01:00  BBTN   136
3   00:00 - 01:00  BMRI   860
4   01:00 - 02:00  BBNI   936
5   01:00 - 02:00  BBRI  1325
6   01:00 - 02:00  BBTN   316
7   01:00 - 02:00  BMRI  1630

我想用下面的代码画一个线图:

df=tweetdatacom.groupby(["Time","Stock"])[["Text"]].count().reset_index()
plt.figure(figsize=(10,5))
line=sn.lineplot(x="Time", y="Text",hue="Stock",palette=["green","orange","red","blue"],marker="o",data=df)
plt.xticks(size=5,rotation=45, horizontalalignment='right',fontweight='light',fontsize='large')
plt.xlabel('Time Interval',size=12)
plt.ylabel('Total Tweets',size=12)

这是我使用代码得到的结果: 在此处输入图像描述

现在,我想将每个标记的值放在 plot 上,我该怎么做?

非常感谢

使用ax.text循环遍历数据的数量。 我只使用提供给我的数据来创建它,所以我省略了你的一些处理。

import pandas as pd
import numpy as np
import io

data = '''
 Time Stock Text
0 "00:00 - 01:00"  BBNI 371
1 "00:00 - 01:00"  BBRI 675
2 "00:00 - 01:00"  BBTN 136
3 "00:00 - 01:00"  BMRI 860
4 "01:00 - 02:00"  BBNI 936
5 "01:00 - 02:00"  BBRI 1325
6 "01:00 - 02:00"  BBTN 316
7 "01:00 - 02:00"  BMRI 1630
'''

df = pd.read_csv(io.StringIO(data), sep='\s+')
import seaborn as sn
import matplotlib.pyplot as plt
# df=tweetdatacom.groupby(["Time","Stock"])[["Text"]].count().reset_index()

plt.figure(figsize=(10,5))

palette = ["green","orange","red","blue"]
line=sn.lineplot(x="Time", y="Text",hue="Stock",palette=palette, marker="o", data=df)

plt.xticks(size=5,rotation=45, horizontalalignment='right',fontweight='light',fontsize='large')
plt.xlabel('Time Interval',size=12)
plt.ylabel('Total Tweets',size=12)

for item, color in zip(df.groupby('Stock'),palette):
    for x,y,m in item[1][['Time','Text','Text']].values:
#         print(x,y,m)
        plt.text(x,y,m,color=color)

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM