如何使用Python Seaborn在时间序列图中绘制标记

时间:2019-06-22 19:05:52

标签: python plot seaborn

我从Seaborn得到以下参考图

import seaborn as sns; 
sns.set()
import matplotlib.pyplot as plt
fmri = sns.load_dataset("fmri")
ax = sns.lineplot(x="timepoint", y="signal", hue="event", style="event", markers=True, data=fmri)

上面的代码产生以下图:

enter image description here

但是,当我用以下代码替换上面代码的最后一行时:

ax = sns.lineplot(x="timepoint", y="signal", markers=True, data=fmri)

我得到以下情节:

enter image description here

我的问题是:

如何在上面的单个图中合并标记?看来markers = True在这里不起作用。有什么办法可以解决这个问题?

0 个答案:

没有答案