WordCloud詞雲包的安裝

1,下載python

https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloudspa

2,安裝    (window環境安裝)blog

找的下載文件的路徑   圖片

安裝  ip

pip install wordcloud-1.3.2-cp36-cp36m-win_amd64.whl

  

 

3,驗證是否安裝成功ci

添加英文數據的文件,好比個人是testfile.txtstring

文件內容爲英文,好比it

Devouring Time, blunt thou the lion's paws,

And make the earth devour her own sweet brood;

Pluck the keen teeth from the fierce tiger's jaws,

And burn the long-lived phoenix in her blood;
。。。。。。。。

運行python:pip

from wordcloud import WordCloud

f = open(u'D:\PythonWorkspace\AI/testfile.txt', 'r').read()

wordcloud = WordCloud(background_color="white", width=1000, height=860, margin=2).generate(f)
import matplotlib.pyplot as plt

plt.imshow(wordcloud)
plt.axis("off")
plt.show()
wordcloud.to_file('test1.png')//保存圖片

 

結果io

 

哈哈哈哈,就這麼解決了。。。雙擊66666666666666666666666666666666666666

相關文章
相關標籤/搜索