Answers for "Change the colorbar scale to log scale"

PHP
0

Change the colorbar scale to log scale

from matplotlib.colors import LogNorm

sns.heatmap(df, norm=LogNorm())
Posted by: Guest on April-13-2022

Browse Popular Code Answers by Language