中英文词频统计
Posted vitan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中英文词频统计相关的知识,希望对你有一定的参考价值。
步骤:
1.准备utf-8编码的文本文件file
2.通过文件读取字符串 str
3.对文本进行预处理
4.分解提取单词 list
5.单词计数字典 set , dict
6.按词频排序 list.sort(key=)
7.排除语法型词汇,代词、冠词、连词等无语义词
8.输出TOP(20)
英文词频统计
with open (‘English.txt‘,‘r‘) as fb:
content = fb.read()
# 清洗数据
import string
content = content.lower() # 格式化数据,转为小写
for i in string.punctuation : # 去除所有标点符号
content = content.replace(i,‘ ‘)
wordList = content.split() # 切片分词
# 统计单词数量
data = {}
for word in wordList :
data[word] = data.get(word,0) +1
# 排序
hist = []
for key,value in data.items():
hist.append([value,key])
hist.sort(reverse = True) # 降序
# 前20个
for i in range(20):
print(hist[i])
中文词频统计
with open (‘Chinese.txt‘,‘r‘) as fb:
content = fb.read()
# 清洗数据
bd = ‘,。?!;:‘’“”【】‘
for word in content :
content = content.replace(bd,‘ ‘)
# 统计出词频字典
wordDict = {}
for word in content :
wordDict[word] = content.count(word)
wordList = list(wordDict.items())
# 排序
wordList.sort(key=lambda x: x[1], reverse=True)
# TOP20
for i in range(20):
print(wordList[i])
以上是关于中英文词频统计的主要内容,如果未能解决你的问题,请参考以下文章