gpt4 book ai didi

python - 如何使用 seaborn 生成高分辨率热图?

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

我有太多的特征(~100)用于关联,导致低分辨率图形。我怎样才能提高分辨率?

sns.heatmap(Feature_corr, cbar = True,  square = True, annot=False,annot_kws={'size': 15},  cmap= 'coolwarm')

最佳答案

heatmap 之前从 matplotlib.pyplot 调用 figure 并使用 figsize 设置图像大小,即:

from matplotlib import pyplot
pyplot.figure(figsize=(15, 15)) # width and height in inches
sns.heatmap(Feature_corr, cbar=1, square=1, annot=0, annot_kws={'size': 15}, cmap= 'coolwarm')

关于python - 如何使用 seaborn 生成高分辨率热图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43335973/

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