如何注释 Seaborn 中热图的每个单元格?
为了注释热图的每个单元格,我们可以在 heatmap() 方法中设置 annot = True。
步骤
- 设置图形大小并在子图之间和周围调整内边距。
- 使用 5 列创建一个 Pandas 数据框。
- 使用 sns.heatmap() 在参数中使用 annot=True 标志绘制带有 步骤 2 的数据框。
- 为了显示图片,使用 show() 方法。
示例
import seaborn as sns import pandas as pd import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True df = pd.DataFrame(np.random.random((5, 5)), columns=["a", "b", "c", "d", "e"]) sns.heatmap(df, annot=True, annot_kws={"size": 7}) plt.show()
输出
广告