Search code examples
pythonheatmapcolorbarseaborn

Change tick size on colorbar of seaborn heatmap


I want to increase the tick label size corresponding to the colorbar in a heatmap plot created using the seaborn module. As an example:

import seaborn as sns
import pandas as pd
import numpy as np

arr = np.random.random((3,3))
df = pd.DataFrame(arr)
ax = sns.heatmap(arr)

Usually I would change the labelsize keyword using the tick_params method on a colorbar axes object, but with the heatmap() function I can only pass kwargs to the colorbar constructor. How can I modify the tick label size for the colorbar in this plot?


Solution

  • Once you call heatmap the colorbar axes will get a reference at the axes attribute of the figure object. So you could either set up the figure ahead of time or get a reference to it after plotting with ax.figure and then pull the colorbar axes object out that way:

    import seaborn as sns
    import pandas as pd
    import numpy as np
    
    arr = np.random.random((3,3))
    df = pd.DataFrame(arr)
    ax = sns.heatmap(arr)
    
    cax = ax.figure.axes[-1]
    cax.tick_params(labelsize=20)