Seaborn绘图可以相互叠加显示多个条形图,但显示最小的条形图

时间:2018-11-27 03:58:27

标签: python matplotlib seaborn

我正在尝试绘制两个类别的一组数据,并且试图绘制水平条形图,以显示每个类别的最小条形,并层叠在较大条形之上。

示例:enter image description here

但是对于某些类别,一组具有更大的价值,反之亦然。

这是我现在正在做的事情,但是对于“用户”值小于“机械手”值的类别,则“用户”值实际上被删除了,您只能看到“机械手”栏。

sb.set_color_codes("pastel")
sb.barplot(y='type',x='counts',data=user_data,label="Users",color = 'b')
sb.set_color_codes("muted")
sb.barplot(y='type',x='counts',data=bot_data,label="Bots",color = 'b')

我的情节目前看起来像这样enter image description here

在这种情况下,类别的示例是y轴上的“视频”。

我将如何解决这个问题?

谢谢

0 个答案:

没有答案