与Seaborn一起注释时间序列

时间:2018-12-05 12:50:44

标签: python annotations seaborn

我有以下数据框:

print(df)
       Date      Google Mentions     year
0  2007-12-01         10              2007
1  2008-01-01         20              2008
2  2008-02-01         20              2008

...

#Plot
sns.lineplot(x="Date", y="Google Mentions", ci=68, data=df)

我想在2008年的第一个情节上添加注释,显示“ Facebook已启动”。

如何创建最终图?

0 个答案:

没有答案