中文词频统计及词云制作
Posted 11+陈泽廷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中文词频统计及词云制作相关的知识,希望对你有一定的参考价值。
1.中软国际华南区技术总监曾老师还会来上两次课,同学们希望曾老师讲些什么内容?
2.中文分词
import jieba txt = open("快穿之天命贵女.txt","r",encoding=\'utf-8\').read() a = jieba.cut(txt) counts = {} for b in a: if len(b) == 1: continue else: counts[b] = counts.get(b,0) + 1 items = list(counts.items()) items.sort(key=lambda x:x[1],reverse=True) for i in range(20): b,count = items[i] print("{0:<6}{1:>3}".format(b,count))
以上是关于中文词频统计及词云制作的主要内容,如果未能解决你的问题,请参考以下文章