博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python——wordcloud
阅读量:5039 次
发布时间:2019-06-12

本文共 874 字,大约阅读时间需要 2 分钟。

import jieba from wordcloud import WordCloud,STOPWORDS import matplotlib.pyplot as plt from scipy.misc import imread back_ground = imread('F:/Python/PythonLeaning/测试专用文件夹/01300000165488121825589267854.png') s1 = 'Time is short life; But even if the target clock speed along with life, ' \      'to one hour We end to this period of time was also engaged to spend too long. ' s2 = 'A prodigal son go with the sun is the general,' \      ' but he was not the same as the solar cycle.' mylist = [s1,s2] word_list = [" ".join(jieba.cut(sentence)) for sentence in mylist] new_text = ' '.join(word_list) wordcloud = WordCloud(font_path='F:/Comic_Font.ttf',         background_color="white",         mask=back_ground,         ).generate(new_text) plt.imshow(wordcloud) plt.axis("off") plt.show() wordcloud.to_file('test.png')

转载于:https://www.cnblogs.com/pandaboy1123/p/8590566.html

你可能感兴趣的文章
C#线程入门
查看>>
CSS清除浮动方法
查看>>
JVM内存回收机制简述
查看>>
洛咕 P2480 [SDOI2010]古代猪文
查看>>
js-创建对象的几种方式
查看>>
JDK JRE Java虚拟机的关系
查看>>
2018.11.20
查看>>
word20161215
查看>>
12th week blog
查看>>
dijkstra (模板)
查看>>
python小记(3)
查看>>
编译Linux驱动程序 遇到的问题
查看>>
大型分布式网站架构技术总结
查看>>
HDU 1017[A Mathematical Curiosity]暴力,格式
查看>>
[算法之美] KMP算法的直观理解
查看>>
EntityFramework 性能优化
查看>>
【ASP.NET开发】菜鸟时期的ADO.NET使用笔记
查看>>
android圆角View实现及不同版本号这间的兼容
查看>>
OA项目设计的能力③
查看>>
Cocos2d-x3.0 文件处理
查看>>