ในการแจกแจงแบบสองตัวแปรร่วมใน matplotlib เราสามารถใช้ กระจาย วิธีการ
ขั้นตอน
-
กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
-
สร้างจุดข้อมูล x และ y โดยใช้ numpy
-
สร้างร่างและชุดแผนย่อย
-
พล็อต x และ y โดยใช้ scatter() วิธีการ
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = 2 * np.random.randn(5000) y = x + np.random.randn(5000) fig, ax = plt.subplots() _ = ax.scatter(x, y, alpha=0.08, cmap="copper", c=x) plt.show()
ผลลัพธ์