如何将彩色的点和线与Seaborn散点图或线图混合?

时间:2020-10-22 14:20:29

标签: python seaborn

我有一个带有这些列['Acc','color']的pandas dataframe数据

对于Seaborn,我想绘制一条带有彩色点的线,如下图所示:

enter image description here

仅适用于具有Seaborn散点图功能的点:

sns.scatterplot(x=data.index, y=data['Acc'], hue=data['color'], ax=ax)

enter image description here

我想得到带有彩色点和线的混合图,如下所示:

sns.lineplot(x=data.index, y=data['Acc'], hue=data['color'],ax=ax, palette=colors)

enter image description here

请问有什么可能性?

非常感谢。 最好的祝福, é

0 个答案:

没有答案