如何防止情节标题与Pandas Boxplot中的图表重叠

时间:2019-07-12 21:17:14

标签: pandas matplotlib

如果我运行以下代码:

if (!firebase.apps.length) {
    firebase.initializeApp({});
}

我得到以下图表:

enter image description here

如何更改标题图表中的填充,使它们不重叠?

1 个答案:

答案 0 :(得分:1)

我和平常一样遇到了同样的问题

df.boxplot(column='Age', by='Embarked', grid=False)
plt.show()

但是,我能够通过传递轴来分离标题:

fig, ax = plt.subplots(figsize=(12,8))
df.boxplot(column='Age', by='Embarked', ax=ax, grid=False)
plt.show()

输出:

enter image description here