How to Rotate Seaborn HeatMap in Python?

Rotating Seaborn HeatMap in Python is an easy process. You need only a list of axis names, and then the number of lines to be rotated. Here we are going to learn how to rotate a Seaborn heatmap with Python. 

seaborn heatmap xlabel rotation

By White Faced Tree RatWhite Faced Tree Rat on Mar 03, 2020
plt.figure(figsize=(10,10))
g = sns.heatmap(
    by_sport, 
    square=True,
    cbar_kws={'fraction' : 0.01},
    cmap='OrRd',
    linewidth=1
)

g.set_xticklabels(g.get_xticklabels(), rotation=45, horizontalalignment='right')
g.set_yticklabels(g.get_yticklabels(), rotation=45, horizontalalignment='right')

Source: www.drawingfromdata.com

Add Comment

0

seaborn heatmap xlabel rotation

By White Faced Tree RatWhite Faced Tree Rat on Mar 02, 2020
plt.figure(figsize=(10,10))
g = sns.heatmap(
    by_sport, 
    square=True, # make cells square
    cbar_kws={'fraction' : 0.01}, # shrink colour bar
    cmap='OrRd', # use orange/red colour map
    linewidth=1 # space between cells
)

Source: www.drawingfromdata.com

Add Comment

0

I will demonstrate to you a simple method so that you can rotate your heat map easily.

Whatever answers related to "seaborn heatmap xlabel rotation"

View All Whatever queries

Whatever queries related to "seaborn heatmap xlabel rotation"

Browse Other Code Languages

CodeProZone