写出以下代码在jupyter notebook中将分词好的那一列数据进行停用词去除,最后进行词云绘制
时间: 2023-03-10 21:07:51 浏览: 163
词云代码.py
答:# 导入wordcloud模块
from wordcloud import WordCloud# 导入停用词
stopwords = open('stopwords.txt', 'r', encoding='utf-8').read().split('\n')# 对分词好的那一列数据进行停用词去除
text = [word for word in data if word not in stopwords]# 生成词云
wc = WordCloud(background_color="white", max_words=100, font_path="simhei.ttf")
wc.generate(" ".join(text))# 显示词云
plt.imshow(wc, interpolation='bilinear')
plt.axis("off")
plt.show()
阅读全文