我有一份要自动提交的报告,我正在使用 matplotlib 来做到这一点。但是我无法弄清楚如何在中间的标题中创建一个空白页面,以执行所执行的分析类型
with PdfPages('review_count.pdf') as pdf:
for cat in self.cat_vars.keys():
if len(self.cat_vars[cat]) > 1:
plt.figure()
self.cat_vars[cat].plot(kind='bar')
plt.title(cat)
# saves the current figure into a pdf page
pdf.savefig()
plt.close()