Matplotlib savefig切断pyplot表

时间:2019-05-27 14:53:33

标签: python pandas matplotlib

我想总结一下可视化+数据列的统计信息。 我想将两个或多个子图与一个描述性表结合起来,然后将图形保存在本地。 但是,在保存图时,表的一部分会被裁剪。

当我执行以下操作

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

column=np.random.normal(size=10000)
df=pd.DataFrame(column, columns=["Price"])

summary = (
        df.describe()
        .append((df.isnull().sum()/len(df)*100)
        .rename('nans %'))
        .iloc[:,0].to_frame()
        )
fig, (ax_distplot) = plt.subplots(1, 1, figsize=(25, 12))

#Distplot with summarizing table
sns.distplot(df.loc[:,"Price"], hist=True, bins=30, kde=False, ax=ax_distplot)
ax_distplot.set(ylabel='Count')
tab = ax_distplot.table(cellText=np.around(summary.values, decimals=2), 
                        rowLabels=summary.index, 
                        colLabels=summary.columns, loc="right", 
                        bbox=[1.15, .2, 0.25, 0.8])

我得到: What it should be

使用以下命令在本地保存时

plt.savefig("Price.pdf", bbox_inches="tight")

收益: Cutted off table

我尝试过

plt.subplots_adjust(right=0.85)

没有任何运气。

2 个答案:

答案 0 :(得分:0)

一种解决方法是在图形周围添加一些填充物。我尝试过,pad_inches=1在您的示例中效果很好

plt.savefig("Price.pdf", bbox_inches="tight", pad_inches=1)

答案 1 :(得分:0)

这是表格边界框的计算方式中的错误。您可能会提出一个问题。

与此同时,手动绘制画布(因此两次绘制)可以解决此问题。

fig.canvas.draw()
plt.savefig("price.png", bbox_inches="tight")