Fri*_*loc 1 python dictionary count histogram
使用python 2.6:
我有一个字典,其中每个键包含一个值列表.
我想查看字典中的所有值,并计算每个键出现的次数.
我一直在看itervalues()或
for value in dictionary.values():
Run Code Online (Sandbox Code Playgroud)
一个开始,还有.count()函数,但我需要返回一个直方图.
例如:
print dictionary
Run Code Online (Sandbox Code Playgroud)
会回来的
{'test' : ['spam', 'eggs', 'cheese', 'spam'], 'test2' : ['spam', 'cheese', 'goats']}
Run Code Online (Sandbox Code Playgroud)
我想告诉我一些事情:
{'spam' : 3, 'eggs' : 1, 'cheese': 2, 'goats' : 1}
Run Code Online (Sandbox Code Playgroud)
from collections import Counter
d = {'test' : ['spam', 'eggs', 'cheese', 'spam'], 'test2' : ['spam', 'cheese', 'goats']}
c = Counter(sum(d.values(), []))
# or c = Counter(x for a in d.values() for x in a)
print c.most_common()
## [('spam', 3), ('cheese', 2), ('eggs', 1), ('goats', 1)]
Run Code Online (Sandbox Code Playgroud)
对于python 2.6使用此配方.