নরমাল ডিস্ট্রিবিউশন
x = np.array([20, 30, 30, 30, 20, 20, 50, 20, 20, 30, 40, 40, 40, 50, 60, 60, 90])
plt.hist(x, 15)
plt.show()



Last updated
x = np.array([20, 30, 30, 30, 20, 20, 50, 20, 20, 30, 40, 40, 40, 50, 60, 60, 90])
plt.hist(x, 15)
plt.show()



Last updated
x = np.array([40, 30, 80, 30, 20, 80, 50, 20, 20, 60, 40, 40, 40, 50, 60, 60, 90, 80, 70])
plt.hist(x, 15)
plt.show()sizes = np.array([9, 8, 8, 9, 9, 1, 4, 5, 6, 7, 8, 9, 10, 10, 11, 11, 11, 11, 11, 13, 12, 12, 12, 12, 13, 13, 14, 14, 14, 15, 15, 15, 16, 17, 18, 20])
plt.hist(sizes)
plt.show()np.mean(sizes)11.194444444444445np.median(sizes)11.0stats.mode(sizes)ModeResult(mode=array([11]), count=array([5]))