将误差线添加到 seaborn 散点图和线图组合

时间:2021-05-17 11:08:53

标签: matplotlib seaborn errorbar

我在 seaborn 中有一个 scatter + lineplot,以这种方式创建:

fig_example = plt.figure(figsize=(10, 10))
sns.lineplot(data=flights, x="year", y="passengers", hue="month")
sns.scatterplot(data=flights, x="year", y="passengers", hue="month",legend=False)

The figure I have

现在,我想添加误差线。 例如,第一个入口点是(年=1949,乘客=112)。 我想为这个特定项目添加一个标准。例如:+= 5 名乘客。 我该怎么做?

谢谢

编辑:这个问题不能回答我的问题:How to use custom error bar in seaborn lineplot?

我需要将它添加到散点图。不是线图。

当我尝试这个命令时:

ax = sns.scatterplot(x="x", y="y", hue="h", data=gqa_tips, s=100, ci='sd', err_style='bars')

失败:

AttributeError: 'PathCollection' object has no property 'err_style'

0 个答案:

没有答案