python中热力图字体大小
时间: 2023-06-22 08:35:03 浏览: 145
python绘制热力图heatmap
在Python中,可以使用seaborn库中的heatmap函数来绘制热力图。要设置热力图中的字体大小,可以使用该函数中的参数`fontsize`,例如:
```python
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
# 创建一个随机矩阵
data = np.random.randn(10, 10)
# 绘制热力图
fig, ax = plt.subplots()
sns.heatmap(data, annot=True, cmap='YlGnBu', ax=ax, fmt='.2f', linewidths=.5, cbar_kws={'label': 'Values'}, fontsize=12)
# 设置坐标轴标签
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
# 显示图形
plt.show()
```
在上面的示例中,`fontsize`被设置为12。你可以根据需要调整这个参数的值。
阅读全文