import pandas as pd
import jieba
import matplotlib.pyplot as plt
from wordcloud import WordCloud, STOPWORDS, ImageColorGenerator
# 加载自定义的词典
jieba.load_userdict('userdict.txt')
jieba.add_word('韩雪')
pd.set_option('display.max_columns', None) # pandas对象显示所有列,而不是用省略号表示
data = pd.read_csv('actor_danmu.csv', header=None, names=['id', '点赞数', 'Comment'])
comment = ''.join(list(data['Comment'])) # 将列表中的所有字符串拼接在一起
comment_after_split = jieba.cut(str(comment), cut_all=False)
wl_space_split = " ".join(comment_after_split)
# 导入背景图
backgroud_Image = plt.imread(r'yanyuan.jpg')
stopwords = STOPWORDS.copy()
# 可以加多个屏蔽词,避免无用的词出现在词云图中
stopwords.add("感觉")
stopwords.add("这个")
stopwords.add("你们")
stopwords.add("没有")
stopwords.add("怎么")
stopwords.add("就是")
stopwords.add("一个")
stopwords.add("为什么&#
词云wordcloud操作
最新推荐文章于 2022-06-26 23:54:29 发布
本文详细介绍了如何使用Python的Wordcloud库创建词云图,从数据预处理到自定义词云样式,包括设置字体、颜色、形状等各个方面,帮助读者全面掌握词云的生成与美化技巧。
摘要由CSDN通过智能技术生成