python 統計矩陣中出現元素最多的值
阿新 • • 發佈:2018-12-09
- np.bincount只能針對一維資料
a = np.array([1,2,3,4,2])
b = np.bincount(a)
b
Out[95]: array([0, 1, 2, 1, 1], dtype=int64)
np.argmax(b)
---------------------------------------------------------------
Out[96]: 2
這樣就得到了矩陣a中出現次數最多的元素。
a = np.array([1,2,5,6,2]) b = np.bincount(a) b Out[99]: array([0, 1, 2, 0, 0, 1, 1], dtype=int64) np.argmax(b) -------------------------------------------------------------------- Out[100]: 2
由此可見,b中的值的意義是,比如位置1上的值為1,表示1在a中出現了一次。位置6上的值為1,表示6在a中出現了一次。
參考連結:https://blog.csdn.net/VictoriaW/article/details/72834428?utm_source=blogxgwz6