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