我在seaborn中制作了一个聚类热图,如下所示
import numpy as np
import seaborn as sns
np.random.seed(2)
data = np.random.randn(100, 10)
sns.clustermap(data)
但行被压扁了:
但如果我将一个大小传递给clustermap函数,那么它看起来很糟糕
有没有办法只增加热图部分的大小?这样就可以读取行名称,但不会拉伸集群部分。
答案 0 :(得分:7)
正如@mwaskom评论的那样,我能够使用ax_heatmap.set_position
和get_position
函数来获得正确的结果。
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
np.random.seed(2)
data = np.random.randn(100, 10)
cm = sns.clustermap(data)
hm = cm.ax_heatmap.get_position()
plt.setp(cm.ax_heatmap.yaxis.get_majorticklabels(), fontsize=6)
cm.ax_heatmap.set_position([hm.x0, hm.y0, hm.width*0.25, hm.height])
col = cm.ax_col_dendrogram.get_position()
cm.ax_col_dendrogram.set_position([col.x0, col.y0, col.width*0.25, col.height*0.5])
{{3}}