I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a JavaScript array.
For example, in
['pear', 'apple', 'orange', 'apple']
the 'apple' element is the most frequent one.
|
I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a JavaScript array. For example, in
the |
|||||||
|
|
This is just the mode. Here's a
|
||||
|
As per
This will now return a string with the mode element(s) delimited by a Another option would be to return an array of mode element(s) like so:
In the above example you would then be able to handle the result of the function as an array of modes. |
||||
|
|
a=['pear', 'apple', 'orange', 'apple'];
b=[];
max='', maxi=0;
for(var k in a) {
if(b[k]) b[k]++ else b[k]=1;
if(maxi<b[k]) { max=k; maxi=b[k] }
}
|
|||||||||||
|
|
I guess you have two approaches. Both of which have advantages. Sort then Count or Loop through and use a hash table to do the counting for you. The hashtable is nice because once you are done processing you also have all the distinct elements. If you had millions of items though, the hash table could end up using a lot of memory if the duplication rate is low. The sort, then count approach would have a much more controllable memory footprint. |
|||
|
|
Note: ct is the length of the array.
|
||||
|
|