seaborn如何在数据框中创建仅特定属性的方框图

时间:2016-07-22 12:13:57

标签: pandas boxplot seaborn

我想创建两个箱图,通过根据比例分割属性来可视化我数据中的不同属性。我目前有这个

框图显示属性的分布

sns.boxplot(data=df)

box plot with all attributes included

我希望它像下面的图像,根据它们的比例在不同的箱形图中使用属性,但每个箱形图下面的属性标签(不是当前的整数)。

框图显示属性的分布

sns.boxplot(data=[df['mi'],df['steps'],df['Standing time'],df['lying time']])

box plot by scale 1

1 个答案:

答案 0 :(得分:2)

您可以通过使用列名列表

进行索引来对pandas DataFrame进行子集化
sns.boxplot(data=df[['mi', 'steps', 'Standing time', 'lying time']])