ในการทำให้ฮิสโตแกรม 2 อันมีความกว้างของถังขยะเท่ากัน เราสามารถคำนวณฮิสโตแกรมของชุดข้อมูลได้
ขั้นตอน
-
สร้างข้อมูลแบบสุ่ม a และการแจกแจงแบบปกติ b.
-
เริ่มต้นตัวแปร bins สำหรับความกว้างของ bin เท่ากัน
-
พล็อต a และ bins โดยใช้ hist() วิธีการ
-
พล็อต b และถังขยะโดยใช้ hist() วิธีการ
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True a = np.random.random(100) * 0.5 b = 1 - np.random.normal(size=100) * 0.1 bins = 10 bins = np.histogram(np.hstack((a, b)), bins=bins)[1] plt.hist(a, bins, edgecolor='black') plt.hist(b, bins, edgecolor='black') plt.show()
ผลลัพธ์