sns.heatmap(corr_matrix_T, ax=axs[1, 2], cmap="Greens", cbar=False, annot=True, fmt='.2f',square=True),让热力图左下对其
时间: 2023-06-18 18:05:07 浏览: 97
openlayers热力图用heatmap.js
4星 · 用户满意度95%
你可以在调用 `sns.heatmap()` 函数时,设置参数 `annot_kws={"ha": 'right', "va": 'top'}`,来让热力图的注释文字右对齐、顶部对齐,从而实现左下对齐的效果。例如:
```python
sns.heatmap(corr_matrix_T, ax=axs[1, 2], cmap="Greens", cbar=False, annot=True, fmt='.2f', square=True, annot_kws={"ha": 'right', "va": 'top'})
```
其中,`annot_kws` 参数用于设置注释文本的样式,`"ha": 'right'` 表示水平对齐方式为右对齐,`"va": 'top'` 表示垂直对齐方式为顶部对齐。
阅读全文