seaborn heatmap y-axis reverse order
Looks like ax.invert_yaxis() solves it. Following the example from which you got the figure: import numpy as np; np.random.seed(0) import seaborn as sns; sns.set() uniform_data = np.random.rand(10, 12) ax = sns.heatmap(uniform_data) ax.invert_yaxis() Gives: