Is there a way to set the color bar scale to log on a seaborn heat map graph? I am using a pivot table output from pandas as an input to the call
sns.he
Short Answer:
from matplotlib.colors import LogNorm sns.heatmap(df, norm=LogNorm())