Suppose I have the following:
a = [1,2,3,1,2,1,1,1,3,2,2,1]
How to find the most frequent number in this list in a neat way?
Regards
|
|
|
If your list contains all non-negative ints, you should take a look at numpy.bincounts: http://docs.scipy.org/doc/numpy/reference/generated/numpy.bincount.html and then probably use np.argmax:
For a more complicated list (that perhaps contains negative numbers or non-integer values), you can use
|
|||||||||
|
|
If you're willing to use SciPy:
|
|||
|
|
|
Also if you want to get most frequent value(positive or negative) without loading any modules you can use the following code:
|
|||
|
|
I'm recently doing a project and using collections.Counter.(Which tortured me). The Counter in collections have a very very bad performance in my opinion. It's just a class wrapping dict(). What's worse, If you use cProfile to profile its method, you should see a lot of '__missing__' and '__instancecheck__' stuff wasting the whole time. Be careful using its most_common(), because everytime it would invoke a sort which makes it extremely slow. and if you use most_common(x), it will invoke a heap sort, which is also slow. Btw, numpy's bincount also have a problem: if you use np.bincount([1,2,4000000]), you will get an array with 4000000 elements. |
|||
|