I am looking for a way to show "0.0045" as "0.45%" on seaboarn
's heatmap by specifying the fmt
keyword:
sns.heatmap(data, annot=True, fmt='??')
However, I did not find a list of format to use. Searching between different examples, I have seen "d", ".2g", ".1f", ".1f%". But it is not clear what is the convention we are assuming here.
Is this assuming people have a common understanding of the formatting format? Or this is present on a doc page I missed?