I'm a python newbie, so please bear with me.
I need to find the frequency of elements in a list
a = [1,1,1,1,2,2,2,2,3,3,4,5,5]
output->
b = [4,4,2,1,2]
Also I want to remove the duplicates from a
a = [1,2,3,4,5]
|
I'm a python newbie, so please bear with me. I need to find the frequency of elements in a list
output->
Also I want to remove the duplicates from a
|
|||||||||||
|
|
Since the list is ordered you can do this:
Output:
|
|||||||||||
|
|
In Python 2.7, you can use
If, like me, you are using Python 2.6 or older, you can download it here. |
|||
|
|
|
To count the number of appearances:
To remove duplicates:
|
|||||||||
|
|
Counting the frequency of elements is probably best done with a dictionary:
To remove the duplicates, use a set:
|
|||||||||||||
|
|
For your first question, iterate the list and use a dictionary to keep track of an elements existsence. For your second question, just use the set operator. |
|||
|
|
|
Python 2.7+ introduces Dictionary Comprehension. Building the dictionary from the list will get you the count as well as get rid of duplicates.
|
|||
|
|
|
In Python 2.7+, you could use collections.Counter to count items
|
|||
|
|
|
|||||
|