Answers for "how to get the frequency of the np array"

3

numpy array count frequency

import numpy as np

x = np.array([1,1,1,2,2,2,5,25,1,1])
unique, counts = np.unique(x, return_counts=True)

print np.asarray((unique, counts)).T
Posted by: Guest on February-23-2020

Code answers related to "how to get the frequency of the np array"

Python Answers by Framework

Browse Popular Code Answers by Language