Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fuqiuai/wordCloud
用python进行文本分词并生成词云
https://github.com/fuqiuai/wordCloud
jieba python wordcloud
Last synced: 4 days ago
JSON representation
用python进行文本分词并生成词云
- Host: GitHub
- URL: https://github.com/fuqiuai/wordCloud
- Owner: fuqiuai
- Created: 2017-10-13T10:57:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-19T08:18:07.000Z (about 7 years ago)
- Last Synced: 2024-08-01T20:48:31.714Z (3 months ago)
- Topics: jieba, python, wordcloud
- Language: Python
- Homepage:
- Size: 9.5 MB
- Stars: 398
- Watchers: 5
- Forks: 95
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - fuqiuai/wordCloud - 用python进行文本分词并生成词云 (Python)
README
# wordCloud
用python进行文本分词并生成词云## 需要安装的包
* `sudo pip3 install jieba`
* `sudo pip3 install wordcloud`
* wordcloud包依赖于Pillow,numpy,matplotlib## 其他
* 分词采用结巴分词,并支持自定义字典
* 分词结果进行词频统计分析,并导出
* 词云图可自己设定背景图(英文词云图不需先进行分词)## 运行结果
运行demo.py,会生成相应的的词云图,和“doc/词频统计.txt”
eg:输入“alice.txt”的词云图如下:
![image](https://raw.githubusercontent.com/fuqiuai/wordCloud/master/Images/alice.png)
十九大报告全文的词云图如下:
![image](https://raw.githubusercontent.com/fuqiuai/wordCloud/master/Images/十九大.png)