python 统计序列中元素出现的频度,及最高的三个值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 统计序列中元素出现的频度,及最高的三个值相关的知识,希望对你有一定的参考价值。

import re
txt = open('CodingStyle').read()
# 内容分割,进行词频统计
c3 = Counter(re.split('\W+',txt))
# 统计词频最高10个词
c3.most_common(10)
from collections import Counter
# 统计词频
c2 = Counter(data)
# 出现频度最高的n个值
c2.most_common(3)
from random import randint
data = [randint(0,20) for _ in range(30)]
c = dict.fromkeys(data,0)
for x in data:
  c[x] += 1

以上是关于python 统计序列中元素出现的频度,及最高的三个值的主要内容,如果未能解决你的问题,请参考以下文章

统计序列中元素出现的频度

2-3课程 比较:统计序列中元素的出现频度

python学习--统计序列中元素出现的频度(次数)

python基础一 ------如何统计一个列表元素的频度

如何统计序列中元素的频度

python_如何统计序列中元素