要准备:红楼梦.txt文件
链接:https://pan.baidu.com/s/1ZcKaCc07-fz-n83gh2RoZA
提取码:1123
可实现的代码
import jieba
from wordcloud import WordCloud
from PIL import Image
excludes = {"什么","一个"}
# excludes = {"qut"}
f = open("D:\python\红楼梦.txt", "r", encoding='utf-8')
txt = f.read() #把读取到的txt内容存放到变量txt里面
f.close()
words = jieba.lcut(txt)
counts = {}
for word in words:
if len(word) == 1: #排除单个字符的分词结果
continue
else:
counts[word] = counts.get(word,0) + 1
for word in excludes:
del(counts[word])
items = list(counts.items())
items.sort(key=lambda x:x[1], reverse=True)
for i in range(30):
word, count = items[i]
print ("{0:{2}<10}出场次数:{1:{2}<5}".format(word, count,(chr(12288))))
##############
#词云图的设置
newtxt = "".join(words)
font = "C:\Windows\Fonts\AdobeHeitiStd-Regular.otf" #电脑自带的C盘里的字体
wordcloud = WordCloud(background_color="white",\
width=800,
height=600,
max_words=100, #显示词的最大个数,默认为200
font_path = font,#设置字体路径
max_font_size=80, #设置字体的大小,即词云的高度
stopwords=excludes,
).generate(newtxt)
# self.font = core.getfont(
# OSError: cannot open resource
# 指定文字路径错误font_path 默认不支持中文,所以需要设置,
wordcloud.to_file("红楼梦词云.png") #默认的词云库的样式
#from PIL import Image
img = Image.open('红楼梦词云.png')
img.show()
运行结果
Building prefix dict from the default dictionary ...
Loading model from cache C:\Users\lenovo\AppData\Local\Temp\jieba.cache
Loading model cost 0.758 seconds.
Prefix dict has been built successfully.
宝玉 出场次数:3773
贾母 出场次数:1230
我们 出场次数:1226
那里 出场次数:1178
凤姐 出场次数:1100
王夫人 出场次数:1015
如今 出场次数:1003
你们 出场次数:1002
图片默认存放在c盘
遇到的问题1:
wordcloud 字体路径的设置,需要调用电脑自带的字体
Python绘图(matplotlib)调用本机系统的字体及使用方法_fname=r'c:\windows\fonts\simhei.ttf'减号是方框 python-CSDN博客
python之matplotlib使用系统字体
导包from matplotlib.font_manager import FontProperties
#调用本机字体库设置字体
font = FontProperties(fname=r"C:\Windows\Fonts\simhei.ttf", size=14)
#词云里的字体路径设置为电脑自带的字体
font = "C:\Windows\Fonts\AdobeHeitiStd-Regular.otf" #电脑自带的C盘里的字体
font_path = font,#设置字体路径
遇到的问题2:
本代码中没有考虑停用词的代码:
参考:
wordcloud生成词云图(含形状、颜色设置)
wordcloud生成词云图(含形状、颜色设置)_#生成词云 wc.generate(text)-CSDN博客
【爬虫+数据清洗+可视化分析】舆情分析"淄博烧烤"B站评论 - 知乎
python之红楼梦词频统计并生成图云
解决OSError: cannot open resource self.font = core.getfont(font, size, index, encoding, layout_engin