I have several matplotlib figure objects organised in a pandas dataframe. I am looking for a way to display such a dataframe within a jupyter notebook.
To give an example for such a dataframe:
import pandas as pd
import matplotlib.pyplot as plt
pdf = pd.DataFrame({'a':{'a1': plt.Figure(), 'a2': plt.Figure()},
'b': {'a1': plt.Figure(), 'a2': plt.Figure()}}
Currently, I am thinking of creating an html template of the table, pasting in the figures in png format. But maybe there is a more elegant way? Maybe it is already implemented?
Sidenote: I am aware, that the usual way of combining several plots is to use several axes within one figure object, but that is not what I am asking for.