我想创建两个箱图,通过根据比例分割属性来可视化我数据中的不同属性。我目前有这个
sns.boxplot(data=df)
box plot with all attributes included
我希望它像下面的图像,根据它们的比例在不同的箱形图中使用属性,但每个箱形图下面的属性标签(不是当前的整数)。
sns.boxplot(data=[df['mi'],df['steps'],df['Standing time'],df['lying time']])
答案 0 :(得分:2)
您可以通过使用列名列表
进行索引来对pandas DataFrame进行子集化sns.boxplot(data=df[['mi', 'steps', 'Standing time', 'lying time']])