Reporting with Python: PDF or HTML to PDF

Using maptplotlib, I created 9 charts that are combined into one PDF using the command savefig. However, I need to show a statistical analysis below each graph with .describe(). What would be the best way to do this?

+4
source share
2 answers

Pandas has the ability to include a chart table. See tablekwarg pandas.DataFrame.plot. See Docs: http://pandas.pydata.org/pandas-docs/dev/visualization.html#visualization-table

+2
source

All Articles