Quick question, I have a clustermap with variable 'age_range' in row_colors and I would like to add the variable 'education' as a row_color as well. I have the following working code:
agerange = df_cor_small.pop("agerange")
lut = dict(zip(agerange.unique(), "rbg"))
row_colors = agerange.map(lut)
ax = sns.clustermap(df_cor_small, cmap='YlGnBu', row_colors=row_colors, figsize=(15,100), cbar_pos=(1.05, .2, .03, .4))
(At the moment df_cor_small does not include the variable 'education' but it will once I know how to implement it, so it will be pop-able just like 'agerange')
Any suggestions how I could implement this?

