使用Python统计文件中词频,并且生成词云

总体思路

  • 导入想要产生词云的文章或者段落
  • 对导入的文字进行jieba分词
  • 统计分词之后的词频
  • 生成并绘制词云

Demo

from wordcloud import WordCloud
import matplotlib.pyplot as plt
import jieba

# Now, There is no 'word.txt' under this path
path_txt = "/home/alan/Desktop/word.txt"

f = open(path_txt, 'r', encoding = 'UTF-8').read()

cut_text = " ".join(jieba.cut(f))

wordcloud = WordCloud(
    font_path = "/home/alan/.local/share/fonts/STKAITI.TTF",
    background_color="white",
    width=1000,
    height = 800
    ).generate(cut_text)

plt.imshow(wordcloud, interpolation = "bilinear")
plt.axis("off")
plt.show()
posted @ 2019-02-12 11:26  AlanGo  阅读(3693)  评论(0编辑  收藏  举报