I have an ordered dictionary (OrderedDict) sorted by value. How can I get the top (say 25) key values and add them to a new dictionary? For example: I have something like this

dictionary={'a':10,'b':20,'c':30,'d':5}
ordered=OrderedDict(sorted(dictionary.items(), key=lambda x: x[1],reverse=True))

Now ordered is an ordered dictionary, I want to create a dictionary, say by taking the top 2 most frequent items and their keys

frequent={'c':30,'b':20}
link|improve this question

42% accept rate
feedback

4 Answers

up vote 1 down vote accepted

The primary purpose of OrderedDict is retaining the order in which the elements were created. What you want here is collections.Counter, which has the n-most-frequent functionality built-in:

>>> dictionary={'a':10,'b':20,'c':30,'d':5}
>>> collections.Counter(dictionary).most_common(2)
[('c', 30), ('b', 20)]
link|improve this answer
Thanks, this is exactly what I wanted. – Nihar Sarangi Nov 28 '11 at 21:16
feedback

Have you tried indexing the List of tuples from the sorted to get the top nth most frequent items and their keys? For example, if you need the top 2 most frequent items, you might do

dictionary={'a':10,'b':20,'c':30,'d':5}
ordered=dict(sorted(dictionary.items(), key=lambda x: x[1],reverse=True)[:2])
link|improve this answer
Thanks,that works. :) – Nihar Sarangi Nov 27 '11 at 16:32
feedback

Get the iterator of the items from ordered.iteritems() method.

Now, to take the first N items, you may use islice method from itertools.

>>> import itertools
>>> toptwo = itertools.islice(ordered.iteritems(), 2)
>>> list(toptwo)
[('c', 30), ('b', 20)]
>>>
link|improve this answer
feedback

Just make a new dictionary using the first N items in the (reverse) ordered dictionary you have.
For example, to get the top three items you could do something like this:

N = 3
topthree = dict(ordered.items()[:N])
print topthree # {'a': 10, 'c': 30, 'b': 20}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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