我正在尝试将 matplotlib 中的绘图写入 pdf 文件,但出现错误。
我正在使用来自 Pandas DataFrame 的 matplotlib 创建一个绘图,如下所示:
bplot = dfbuild.plot(x='Build',kind='barh',stacked='True')
从文档: http: //matplotlib.org/faq/howto_faq.html#save-multiple-plots-to-one-pdf-file
看来我应该这样做:
from matplotlib.backends.backend_pdf import PdfPages
pp = PdfPages(r'c:\temp\page.pdf')
figure = bplot.fig
pp.savefig(figure)
pp.close()
我收到此错误:
AttributeError: 'AxesSubplot' object has no attribute 'fig'