将绘图标签添加到Seaborn线图

时间:2019-03-06 03:57:42

标签: python pandas matplotlib seaborn

我有一个显示月收入的数据框。另有一列显示该月打开的位置数。

>       Date        Order Amount    Locations Opened 
  16    2016-05-31  126443.17       2.0
> 17    2016-06-30  178144.27       0.0 
  18    2016-07-31  230331.96       1.0
> 19    2016-08-31  231960.04       0.0 
  20    2016-09-30  208445.26       0.0

我正在使用seaborn来按月绘制收入

    sns.lineplot(x="Date", y="Order Amount", 
                data=total_monthly_rev).set_title("Total Monthly Revenue")

enter image description here

我一直在尝试使用第三列“位置已打开”,但未成功,将辅助文字添加到线图中,以便显示一个月内打开的位置数,其中“位置已打开”>0。

1 个答案:

答案 0 :(得分:3)

IIUC,使用text

plt.figure(figsize=(12, 5))
sns.lineplot(x="Date", y="Order Amount", data=total_monthly_rev).set_title("Total Monthly Revenue")

# Using a variable to manage how above/below text should appear
slider = 1000
for i in range(total_monthly_rev.shape[0]):
    if total_monthly_rev['LocationsOpened'].iloc[i] > 0:
        plt.text(total_monthly_rev.Date.iloc[i], 
                 total_monthly_rev['Order Amount'].iloc[i] + slider,  
                 total_monthly_rev['LocationsOpened'].iloc[i])
plt.show()

plt