实例12:政府工作报告词云分析

新时代中国特色社会主义报告的分析:

import jieba
import wordcloud
f=open("新时代中国特色社会主义.txt","r",encoding="utf-8")
t=f.read()
f.close()
ls=jieba.lcut(t)
txt=" ".join(ls)
w=wordcloud.WordCloud(font_path="msyh.ttc",width=1000,height=700,background_color="white")
w.generate(txt)
w.to_file("ground.png")

运行结果:生成的文件如下

实例12:政府工作报告词云分析_第1张图片

 


更换文件,代码不变:

实例12:政府工作报告词云分析_第2张图片

设置最大的文字输出数量为15:增加新的参数 max_words=15

import jieba
import wordcloud
f=open("关于实施乡村振兴战略的意见.txt","r",encoding="utf-8")
t=f.read()
f.close()
ls=jieba.lcut(t)
txt=" ".join(ls)
w=wordcloud.WordCloud(font_path="msyh.ttc",width=1000,\
                      height=700,background_color="white"\
                     ,max_words=15)
w.generate(txt)
w.to_file("ground.png")

显示结果:

实例12:政府工作报告词云分析_第3张图片


 

实例12:政府工作报告词云分析_第4张图片

生成更有型的词云:

import jieba
import wordcloud
import imageio
#from scipy.misc import imread
mask=imageio.imread("fivestar.png")
f=open("新时代中国特色社会主义.txt","r",encoding="utf-8")
t=f.read()
f.close()
ls=jieba.lcut(t)
txt=" ".join(ls)
w=wordcloud.WordCloud(font_path="msyh.ttc",mask=mask\
                     ,width=1000,height=700,background_color="white",\
                     )
w.generate(txt)
w.to_file("grwordcloud.png")

实例12:政府工作报告词云分析_第5张图片

import jieba
import wordcloud
import imageio
#from scipy.misc import imread
mask=imageio.imread("chinamap.png")
f=open("新时代中国特色社会主义.txt","r",encoding="utf-8")
t=f.read()
f.close()
ls=jieba.lcut(t)
txt=" ".join(ls)
w=wordcloud.WordCloud(font_path="msyh.ttc",mask=mask\
                     ,width=1000,height=700,background_color="white",\
                     )
w.generate(txt)
w.to_file("grwordcloud.png")

实例12:政府工作报告词云分析_第6张图片

你可能感兴趣的:(#,Python入门)