一天中有一天的seaborn阴影barplot变为总barplot

时间:2020-04-20 10:16:00

标签: python pandas seaborn

我目前正在绘制具有以下数据的数据框的条形图:

Hour   Value   Type  Date
1       1       A    01.01.2020
2       2       B    01.01.2020
1       2       A    02.01.2020

我当前的绘图正在工作:

import sns as sns
import matplotlib.pyplot as plt
plt.figure(figsize=(10,10))
sns.barplot(x="Hour", hue="Type", y="Value", data=df3).set_title(a)
plt.show()

它看起来像: enter image description here

如何在同一图中插入阴影条?这样一个特定的日子(例如在同一图中显示了01.01.2020,而我同时有两个条形图)?

0 个答案:

没有答案