带有seaborn多个类别的箱形图

时间:2018-01-04 18:14:42

标签: python matplotlib seaborn

这应该很容易,但我无法理解我的生活。这是我的数据帧的示例。

enter image description here \ n

sns.boxplot(x='dataset', y='value', hue='Model', data=dd)

但我收到此错误

ValueError: List of boxplot statistics and {位置{1}}

1 个答案:

答案 0 :(得分:4)

正如评论中提到的,您希望将数据转换为浮点数

dd['value'] = dd['value'].astype(float)
sns.boxplot(x='dataset', y='value', hue='Model', data=dd)

应该适合你