NumPy 有一個numpy.histogram()
函式,它是資料的頻率分布的圖形表示。 水平尺寸相等的矩形對應於類間隔,稱為bin
,變數height
對應於頻率。
numpy.histogram()
numpy.histogram()
函式將輸入陣列和bin
作為兩個引數。 bin
陣列中的連續元素用作每個bin
的邊界。
import numpy as np
a = np.array([22,87,5,43,56,73,55,54,11,20,51,5,79,31,27]) ]
np.histogram(a,bins = [0,20,40,60,80,100])
hist,bins = np.histogram(a,bins = [0,20,40,60,80,100])
print hist
print bins
輸出如下:
[3 4 5 2 1]
[0 20 40 60 80 100]
plt()
Matplotlib 可以將直方圖的數位表示轉換為圖形。 pyplot
子模組的plt()
函式將包含資料和bin
陣列的陣列作為引數,並轉換為直方圖。
from matplotlib import pyplot as plt
import numpy as np
a = np.array([22,87,5,43,56,73,55,54,11,20,51,5,79,31,27])
plt.hist(a, bins = [0,20,40,60,80,100])
plt.title("histogram")
plt.show()
輸出如下: