ในการสร้างตำนานโดยอัตโนมัติใน Matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -
- กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
- เริ่มต้นตัวแปร N สำหรับจำนวนข้อมูลตัวอย่าง
- สร้าง x, y, c และ s ข้อมูลโดยใช้ตัวเลข
- สร้างร่างและชุดแผนย่อยโดยใช้ แผนย่อย() วิธีการ
- พล็อต x และ ย จุดข้อมูลที่มีสีและขนาดต่างกัน
- วางตำนานไว้บนขวาน
- เพิ่ม ศิลปิน ตามรูป
- สร้างคำอธิบายและป้ายกำกับสำหรับ PathCollection
- อีกครั้ง วางคำอธิบายบนแกนสำหรับขนาดอีกครั้ง
- หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True N = 45 x, y = np.random.rand(2, N) c = np.random.randint(1, 5, size=N) s = np.random.randint(10, 220, size=N) fig, ax = plt.subplots() scatter = ax.scatter(x, y, c=c, s=s) legend1 = ax.legend(*scatter.legend_elements(), loc="lower left", title="Classes") ax.add_artist(legend1) handles, labels = scatter.legend_elements(prop="sizes", alpha=0.6) legend2 = ax.legend(handles, labels, loc="upper right", title="Sizes") plt.show()
ผลลัพธ์