Seborn,更改色条的字体大小
问题描述
我想更改热图颜色条的字体大小。
以下是我的代码:
import seaborn as sns
import matplotlib.pyplot as plt
from numpy import arange
x = arange(25).reshape(5, 5)
cmap = sns.diverging_palette(220, 20, sep=20, as_cmap=True)
ax = sns.heatmap(x, cmap=cmap)
plt.show()
我可以使用plt.tick_params(axis='both', labelsize=20)
更改刻度标签。但是,颜色栏字体大小不会更改。
有办法做到这一点吗?
解决方案
您可以使用seaborn.set()
方法更改字体比例,将font_scale
参数设置为所需的比例,有关详细信息,请参阅海运documentation。
例如,比例为3的绘图:
import seaborn as sns
import matplotlib.pyplot as plt
from numpy import arange
# here set the scale by 3
sns.set(font_scale=3)
x = arange(25).reshape(5, 5)
cmap = sns.diverging_palette(220, 20, sep=20, as_cmap=True)
ax = sns.heatmap(x, cmap=cmap)
plt.show()
相关文章