91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python制作詞云的方法

發布時間:2020-10-24 20:55:59 來源:腳本之家 閱讀:201 作者:抑郁工頭 欄目:開發技術

需求:

看到朋友圈有人發詞云照片,感覺自己也可以玩一玩,于是乎借助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.寫的第一篇文章,不足之處歡迎來噴,畢竟我是要學習的。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

中超| 安徽省| 井冈山市| 河南省| 桓仁| 定结县| 芜湖县| 读书| 资源县| 杭州市| 游戏| 永城市| 泽州县| 宝山区| 正宁县| 永丰县| 湖南省| 合阳县| 双辽市| 武汉市| 织金县| 阜平县| 卢湾区| 如皋市| 山阴县| 天镇县| 集贤县| 承德县| 滦南县| 射阳县| 天峨县| 灵山县| 桦南县| 昌黎县| 阳东县| 铜陵市| 顺义区| 安丘市| 宁津县| 高陵县| 漳浦县|