Sort Counter by value - python

0 votes

Is there a pythonic way to sort Counter by value? If so, it is faster than this:

>>> from collections import Counter
>>> x = Counter({'a':1, 'b':2, 'c':3})
>>> sorted(x)
['a', 'b', 'c']
>>> sorted(x.items())
[('a', 1), ('b', 2), ('c', 3)]
>>> [(l,k) for k,l in sorted([(j,i) for i,j in x.items()])]
[('a', 1), ('b', 2), ('c', 3)]
>>> [(l,k) for k,l in sorted([(j,i) for i,j in x.items()], reverse=True)]
[('c', 3), ('b', 2), ('a', 1)

Nov 13, 2018 in Python by findingbugs
• 3,260 points
1,283 views

1 answer to this question.

0 votes

>>> x = Counter({'a':1, 'b':2, 'c':3})
>>> sorted(x.items(), key=lambda k: -k[1]) # Ascending
[('a', 1), ('b', 2), ('c', 3)]

answered Nov 13, 2018 by Priyaj
• 58,090 points

Related Questions In Python

0 votes
1 answer

How to sort Counter by value using python?

Use the Counter.most_common() method, it'll sort the items for you: >>> ...READ MORE

answered May 23, 2018 in Python by charlie_brown
• 7,720 points
10,007 views
0 votes
1 answer

How to sort dictionary by value python

This would work: d = sorted(data, key = ...READ MORE

answered Nov 2, 2018 in Python by Nabarupa
525 views
0 votes
1 answer

How do I sort a dictionary by value?

If you construct a dictionary with the ...READ MORE

answered Mar 13, 2019 in Python by Trisha
437 views
0 votes
1 answer

Sort list by frequency in python

You can try the following for a ...READ MORE

answered May 13, 2019 in Python by SDeb
• 13,300 points
5,946 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,061 views
0 votes
1 answer
0 votes
1 answer

How do I sort a dictionary by value?

It is not possible to sort a ...READ MORE

answered Jul 30, 2018 in Python by Priyaj
• 58,090 points
551 views
+1 vote
1 answer

Reading a large file, line by line in Python

The correct, fully Pythonic way to read ...READ MORE

answered Aug 21, 2018 in Python by Priyaj
• 58,090 points
712 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP