gpt4 book ai didi

python - seaborn 热图标签无法清晰显示

转载 作者:太空宇宙 更新时间:2023-11-04 00:31:55 25 4
gpt4 key购买 nike

我在我的 Seaborn 热图中存储标签时遇到问题。我的标签很长。

correlation = df.corr()
plt.figure(figsize=(10,10))
sns.heatmap(correlation, vmax=1, square=True,annot=True,cmap='cubehelix')
plt.title('Correlation between different fearures')

可以看到 map :

here

最佳答案

试试这个

correlation = df.corr()
plt.figure(figsize=(10,10))
g = sns.heatmap(correlation, vmax=1, square=True,annot=True,cmap='cubehelix',xticklabels=True,yticklabels=True)
g.set_yticklabels(g.get_yticklabels(), rotation =0)
g.set_xticklabels(g.get_yticklabels(), rotation =90)
plt.title('Correlation between different fearures')

关于python - seaborn 热图标签无法清晰显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45497455/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com