ในการเพิ่มหน่วยลงในคำอธิบายประกอบแผนที่ความร้อนใน Seaborn เราสามารถทำตามขั้นตอนต่อไปนี้ -
-
กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
-
สร้างเมทริกซ์มิติ 5×5 โดยใช้ numpy
-
พล็อตข้อมูลสี่เหลี่ยมเป็นเมทริกซ์เข้ารหัสสี
-
ใส่คำอธิบายประกอบค่าแผนที่ความหนาแน่นด้วย %age หน่วย.
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import matplotlib.pyplot as plt import seaborn as sns import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = np.random.rand(5, 5) ax = sns.heatmap(data, annot=True, fmt='.1f', square=1, linewidth=1.) for t in ax.texts: t.set_text(t.get_text() + " %") plt.show()
ผลลัพธ์