4
我想修改seaborn.clustermap
中顏色條的刻度。 This answer解決了這個問題的一般matplotlib
彩條。seaborn clustermap:設置顏色條刻度
g = sns.clustermap(np.random.rand(20,20),
row_cluster=None, col_cluster=None,
vmin = 0.25, vmax=1.0)
出於某種原因,當我指定clustermap(..., vmin=0.25, vmax=1.0)
,我得到蜱從0.3到0.9,但沒有1.0。如果我擴展vmax=1.05
,我會在1.05
處得到一個刻度。
我的猜測是clustermap
返回的對象的g.cax
屬性是colorbar,但它沒有.set_ticks()
方法。
任何想法如何設置蜱?
你的問題是明確的,但如果你寫了這樣一個例子這將是最好的有人可以輕鬆地複製和粘貼它開始幫助你。 – mwaskom