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