I\'m using Seaborn\'s FacetGrid class to plot a set of matrices using the heatmap function, also from Seaborn. However, I cannot adjust the aspect rati
FacetGrid
heatmap
You could use the square=True parameter substituting this in your code:
fg.map_dataframe(draw_heatmap, 'label1', 'label2', 'value', cbar=False, square=True)