ndarray 内の特定のアイテムの出現回数をカウントするにはどうすればいいですか? 質問する

ndarray 内の特定のアイテムの出現回数をカウントするにはどうすればいいですか? 質問する

次の配列内の0との数を数えるにはどうすればよいでしょうか?1

y = np.array([0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1])

y.count(0)与える:

numpy.ndarrayオブジェクトには属性がありませんcount

ベストアンサー1

使用numpy.unique:

import numpy
a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4])
unique, counts = numpy.unique(a, return_counts=True)

>>> dict(zip(unique, counts))
{0: 7, 1: 4, 2: 1, 3: 2, 4: 1}

非NumPyメソッドを使用するcollections.Counter;

import collections, numpy
a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4])
counter = collections.Counter(a)

>>> counter
Counter({0: 7, 1: 4, 3: 2, 2: 1, 4: 1})

おすすめ記事