Seaborn中的共享条形图

时间:2018-07-03 21:52:36

标签: python pandas seaborn

我有一个dataframe,看起来像这样:

    Time             Manual Sensor  
0  2016-05-25 03:15:00   0   0
1  2016-05-25 03:16:00   0   0
2  2016-05-25 03:17:00   0   0  
3  2016-05-25 03:18:00   0   0
4  2016-05-25 03:19:00   0   0  

我想绘制一个简单的条形图,其中包含两列df['Manual']df['Sensor'],并在seaborn中共享x轴标签。以下代码按预期绘制了重叠的图。

以下代码显示了一些错误:

sns.barplot(x='Time', data=df, color='blue', alpha=0.5, y=[['Sensor', 'Manual']])

我知道一种使用熊猫图的替代方法,除了x标签格式外,它还提供了我想要的东西。

df[['Sensor','Manual']].plot(kind='bar')

enter image description here

如何使用seaborn获得相似的情节。我期待在shared中使用一个sns.barplot关键字,该关键字似乎不存在。如果没有办法,该如何从pandaplot中的xaxislabel中删除这0天?

0 个答案:

没有答案