码迷,mamicode.com
首页 > 编程语言 > 详细

python 词云

时间:2020-01-04 11:05:07      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:width   tor   cloud   show   段落   pytho   height   directory   定义   

# 导入扩展库

import re # 正则表达式库
import collections # 词频统计库
import numpy as np # numpy数据处理库
import jieba # 结巴分词
import wordcloud # 词云展示库
from PIL import Image # 图像处理库
import matplotlib.pyplot as plt # 图像展示库


fs = open("sanguo.txt","r",encoding="utf-8") #三国的txt,可以网上下载
txt = fs.read()
fs.close()

rt = jieba.lcut(txt) # 将段落的句子切割成一个个的词语
rt_txt = " ".join(rt) 词语之间使用空格进行拼接
mask = np.array(Image.open(‘time2.jpg‘)) # 定义词云图片背景
wc = wordcloud.WordCloud(
font_path=‘/home/syroot/zst_directory/font/msyh.ttf‘, # 设置字体格式
width=1200,
height=800,
mask=mask, # 设置背景图
max_words=200, # 最多显示词数
max_font_size=200 # 字体最大值
).generate(rt_txt)
image_colors = wordcloud.ImageColorGenerator(mask) # 从背景图建立颜色方案
wc.recolor(color_func=image_colors) # 将词云颜色设置为背景图方案
plt.imshow(wc,interpolation="bilinear") # 显示词云
plt.axis(‘off‘) # 关闭坐标轴

python 词云

标签:width   tor   cloud   show   段落   pytho   height   directory   定义   

原文地址:https://www.cnblogs.com/zst-blogs/p/12147998.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!