Python制作词云的方法

作者:抑郁工头 时间:2021-08-26 19:52:20 

需求:

看到朋友圈有人发词云照片,感觉自己也可以玩一玩,于是乎借助wordcloud实现功能。

环境:

MacOS 10.12 +Python 2.7 +Wordcloud
Windows通用

准备:

安装wordcloud


$ pip install wordcloud

SIP功能是Apple在OSX上推出的系统完整性保护功能,新版本的macOS直接用pip安装报错,在不关闭SIP功能的前提下,可以使用


$ pip install wordcloud --user -U

某些情况还会提示错误,需要安装VS for Python,直接上官网下载安装即可。

实现:

源码


#! /usr/bin/env python

# import
from os import path
from PIL import Image
import numpy as np
import matplotlib.pyplot as plt
from wordcloud import WordCloud, STOPWORDS

# current path
d = path.dirname(__file__)

# Read the whole text.
text = open(path.join(d, 'test.txt')).read()

# read the mask image
test_mask = np.array(Image.open(path.join(d, "test_mask.png")))

stopwords = set(STOPWORDS)
stopwords.add("said")

# setting
wc = WordCloud(background_color="black", max_words=2000, mask=test_mask,
       stopwords=stopwords)

# generate word cloud
wc.generate(text)

# plot and show
plt.imshow(wc, interpolation='bilinear')
plt.axis("off")
plt.figure()
plt.imshow(test_mask, cmap=plt.cm.gray, interpolation='bilinear')
plt.axis("off")
plt.show()

# store to file
wc.to_file(path.join(d, "test.png"))

辅助文件

test_mask.png

Python制作词云的方法

test.txt

The list of big's prior run-ins with the far-right fringe is long and varied. He tweeted fake crime statistics spread by racists to paint black cans as violent, then defended them as credible. He sparked a firestorm last year when he declined to renounce

效果图

Python制作词云的方法

其它说明:

1.文档可以是任意英文txt文件,以上的是网络上英文新闻中的一小段,仅起示例作用。
2.关于中文支持,有多种方法,主要就是分词的问题,这里不讨论了。
3.我不清楚许多人说的定制是什么意思,因为如果想要自己任意想要的形状的话,我觉得用PS做一个png图可以达到同样的效果,经测试也没有发现问题。
4.写的第一篇文章,不足之处欢迎来喷,毕竟我是要学习的。

来源:http://blog.csdn.net/destinymf/article/details/77849904

标签:Python,词云
0
投稿

猜你喜欢

  • js阻止移动端页面滚动的两种方法

    2023-08-04 17:36:12
  • 配置node服务器并且链接微信公众号接口配置步骤详解

    2024-05-03 15:54:12
  • Yolov5训练意外中断后如何接续训练详解

    2022-05-14 00:16:51
  • 百度小程序自定义通用toast组件

    2024-04-22 22:17:11
  • MySQL数据库之索引详解

    2024-01-14 20:57:46
  • mysql中如何判断是否支持分区

    2024-01-19 18:00:57
  • MySQL 表字段属性

    2011-09-10 16:01:01
  • Python中的exec、eval使用实例

    2022-07-05 21:01:41
  • miniconda3介绍、安装以及使用教程

    2023-06-06 18:37:16
  • 详解python开发环境搭建

    2023-09-17 21:37:25
  • python 中pass和match使用方法

    2023-07-17 05:49:47
  • 人工智能(AI)首选Python的原因解析

    2021-03-23 16:04:12
  • SQL语句中JOIN的用法场景分析

    2024-01-15 05:05:49
  • Go基础教程系列之import导入包(远程包)和变量初始化详解

    2024-02-22 03:33:53
  • 理解JavaScript作用域链

    2010-01-23 11:31:00
  • Python制作微信好友背景墙教程(附完整代码)

    2022-11-13 08:31:08
  • Python数据分析与处理(二)——处理中国地区信息

    2021-04-04 17:12:26
  • 人工智能学习pyTorch的ResNet残差模块示例详解

    2022-05-04 21:45:22
  • vue常用指令代码实例总结

    2021-01-24 10:53:58
  • python基于三阶贝塞尔曲线的数据平滑算法

    2022-04-19 18:23:06
  • asp之家 网络编程 m.aspxhome.com