I want to save multiple (6) plots on one page of a pdf file using python. Currently, I'm saving every plot on a new page.
pdf = matplotlib.backends.backend_pdf.PdfPages("output.pdf")
for fig in plots:
pdf.savefig(plots[fig])
pdf.close()
The result I want to get is, that the first 6 plots are on page 1, the next 6 on page 2, and so on. Does somebody have an idea how to realize this?
Thank you in advance!
