Answers for "python count of specific nukmbers in array"

0

How to count occurences of a certain item in a numpy array

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

>>> np.count_nonzero(y == 1)
1
>>> np.count_nonzero(y == 2)
7
>>> np.count_nonzero(y == 3)
3
Posted by: Guest on May-06-2021
1

count how many times a value appears in array python

>>> [1, 2, 3, 4, 1, 4, 1].count(1)
3
Posted by: Guest on September-02-2020

Code answers related to "python count of specific nukmbers in array"

Python Answers by Framework

Browse Popular Code Answers by Language