I have used seaborn.clustermap() to plot clustermap as shown below
labels = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"]
sns.clustermap(data, cmap=sns.cm.rocket_r, xticklabels=labels, yticklabels=labels)
It is pretty clear there are two clusters, "m", "o", "d", "n", "p" vs the rest. Now I want to add hatches ("//") to the rows and columns of "m", "o", "d", "n", "p" to highlight the difference, how can I do that? Thanks.

I found out how to do that by following the answer in this question: adding hatches to seaborn heatmap plot