I am looking for a (perhaps creative) way to place text next to a graph in the jupyter notebook. The idea is to have a detailed description of the chart, right next to it, instead of the usual vertical flow of the notebook.
Any ideas?
I am looking for a (perhaps creative) way to place text next to a graph in the jupyter notebook. The idea is to have a detailed description of the chart, right next to it, instead of the usual vertical flow of the notebook.
Any ideas?
A rather creative way is to mimic the inline backend but adding a underlying table. A possible solution for python 2.7 could look like
To be used like:
If you now set the table CSS to remove the border e.g.
you get a plot like
Of course this solution can be further enhanced to use fixed column widths, etc. IIRC the base64 encoding was slightly different with python 3.x.