码迷,mamicode.com
首页 > 其他好文 > 详细

中文词频统计

时间:2017-09-29 14:01:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:close   span   rds   items   code   encoding   简单   txt   get   

下载一中文长篇小说,并转换成UTF-8编码。

使用jieba库,进行中文词频统计,输出TOP20的词及出现次数。

排除一些无意义词、合并同一词。

对词频统计结果做简单的解读

import jieba
fo=open(chongsheng.txt,r,encoding=utf-8)
t=fo.read()
fo.close()

words=jieba.cut(t)
dic={}
for w in words:
    if len(w)==1:
        continue
    else:
        dic[w]=dic.get(w,0)+1
wc = list(dic.items())
wc.sort(key=lambda x:x[1],reverse = True)
for i in range(20):
    print(wc[i])

技术分享

 

中文词频统计

标签:close   span   rds   items   code   encoding   简单   txt   get   

原文地址:http://www.cnblogs.com/cyj5201314/p/7610655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!