count values in numpy array code example

Example 1: np array value count

unique_elements, counts_elements = np.unique(a, return_counts=True)

Example 2: numpy count the number of 1s in array

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}

Example 3: count values in array python

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}

Example 4: numpy count where

print(np.sum(a % 2 == 1))

Example 5: count values in numpy list python

>>> import numpy
>>> y = np.array([1, 2, 2, 2, 2, 0, 2, 3, 3, 3, 2, 2])

>>> numpy.count_nonzero(y == 1)
1
>>> numpy.count_nonzero(y == 2)
7
>>> numpy.count_nonzero(y == 3)
3