x_axis中每个月有两个框

时间:2019-06-11 13:20:41

标签: python seaborn boxplot

我想创建一个箱形图,其中每个月都有两个彼此相邻的箱形图。 我正在尝试使用同一图研究两个不同连续变量的月度分布。

fig, ax = plt.subplots(figsize=(25,5))
sns.boxplot(x='month',y='Total_Batch_change_cal',data=batch_cha_dist,ax=ax)
sns.boxplot(x='month',y='Batch change duration(min)',data=batch_cha_dist)
ax.set(ylabel='Daily Batch change monthly dist (Hour)')
plt.show()

enter image description here

0 个答案:

没有答案