vote up 1 vote down star

Is there a fast/simple way to calculate the frequency distribution of a .Net collection using Linq or otherwise?

For example: An arbitrarily long List contains many repetitions. What's a clever way of walking the list and counting/tracking repetitions?

flag

1  
Do you want fast or simple? – James Black Oct 21 at 1:34
@Jack: By fast i guess i meant shortest algorithm. i'm not too concerned with performance. – psasik Oct 21 at 1:42

3 Answers

vote up 2 vote down check

The easiest way is to use a hashmap and either use the value as the key and increment the value, or pick a bucket size (bucket 1 = 1 - 10, bucket 2 = 11 - 20, etc), and increment each bucket by the value.

Then you can go through and determine the frequencies.

link|flag
vote up 3 vote down

The simplest way to find duplicate items in a list is to group it, like this:

var dups = list.GroupBy(i => i).Where(g => g.Skip(1).Any());

(Writing Skip(1).Any() should be faster than (Count() > 1) because it won't have to traverse more than two items from each group. However, the difference is probably negligible unless list's enumerator is slow)

link|flag
Why was this downvoted? – SLaks Nov 5 at 20:47
vote up 1 vote down

The C5 generic collections library has a HashBag implementation that accepts duplicates by counting. The following pseudo-code would get you what you're looking for:

var hash = new HashBag();
hash.AddAll(list);
var mults = hash.ItemMultiplicities();

(where K is the type of the items in your list) mults will then contain an IDictionary<K,int> where the list item is the key and the multiplicity is the value.

link|flag
i didn't use C5 but ended up writing my own process based on a similar idea: Dictionary<string, int> – psasik Nov 5 at 20:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.