When preparing a table with experimental results for publication, one often wishes to highlight the output of extreme cells, for example by putting them in bold.
However, pandas does not readily support this use case. The closest
one gets with stock pandas is table.style.highlight_max(axis=1)
which highlights …