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

中文词频统计及词云制作

时间:2017-09-25 19:06:27      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:nts   for   top   code   es2017   imp   cut   reverse   count   

1.中软国际华南区技术总监曾老师还会来上两次课,同学们希望曾老师讲些什么内容?(认真想一想回答)

 希望老师详细讲一下python在网络编程的应用

2.中文分词

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

import jieba
txt = open("C:/Users/Administrator/Desktop/4-昆仑神宫.txt","r",encoding=utf-8).read()
words = jieba.cut(txt)
counts = {}
for w in words:
    if len(w) == 1:
        continue
    else:
        counts[w] = counts.get(w,0) + 1
items = list(counts.items())
items.sort(key=lambda x:x[1],reverse=True)
for i in range(20):
    w,count = items[i]
    print("{0:<10}{1:>5}".format(w,count))

技术分享

 

中文词频统计及词云制作

标签:nts   for   top   code   es2017   imp   cut   reverse   count   

原文地址:http://www.cnblogs.com/gzw2017/p/7592867.html

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