I have a dataframe that contains percentages. If I use seaborn to make a clusterplot somehow the number 100 is plotted as 1+e01.
Is there any way to avoid this?
I tried rounding the percentages before plotting them, but that does not affect the plot.
Use
fmt="d", as in this example:fmtis a parameter toheatmapbut additionalclustermapkwargs are passed through to the main heatmap.