本文介绍了Seaborn 条形图中的垂直线代表什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用此教程中的 Seaborn factorplot.
I am trying to use Seaborn factorplot from this tutorial.
以下代码创建一个带有垂直线的条形图.这些垂直线代表什么?
The following code creates a bar chart with vertical lines. What do those vertical lines represent?
sns.factorplot("kind", "pulse", "diet", exercise, kind="bar")
推荐答案
那些是错误栏.根据您链接到的页面:
Those are errorbars. According to the page you linked to:
默认情况下,条形/点的高度显示平均值和 95% 置信区间
这篇关于Seaborn 条形图中的垂直线代表什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!