真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python如何生成英文版詞云圖-創(chuàng)新互聯(lián)

小編這次要給大家分享的是python如何生成英文版詞云圖,文章內(nèi)容豐富,感興趣的小伙伴可以來(lái)了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)公司一直秉承“誠(chéng)信做人,踏實(shí)做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個(gè)客戶多一個(gè)朋友!專注中小微企業(yè)官網(wǎng)定制,網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì),塑造企業(yè)網(wǎng)絡(luò)形象打造互聯(lián)網(wǎng)企業(yè)效應(yīng)。

 使用wordcloud模塊,生成云圖,測(cè)試文本為:

Betty Botter bought some butter but she said the butter's bitter. If I put it in my batter it will make my batter bitter. So, she bought some better butter, better than the bitter butter and she put it in her batter and her batter was not bitter. So 'twas good that Betty Botter bought some better butter.

生成云圖代碼:

#導(dǎo)入生成云圖模塊
from wordcloud import WordCloud
with open("F:/python入門/數(shù)據(jù)2/fenci_test2.txt" ,encoding="utf-8")as file:
  #讀取文本
  text=file.read()
  #設(shè)置詞云的字體、背景顏色、寬、高、字?jǐn)?shù)
  wordcloud=WordCloud(font_path="C:/Windows/Fonts/Tahoma.ttf",
  background_color="black",width=600,
  height=300,max_words=50).generate(text)
  #生成圖片
  image=wordcloud.to_image()
  #顯示圖片
  image.show()

文章名稱:python如何生成英文版詞云圖-創(chuàng)新互聯(lián)
當(dāng)前地址:http://weahome.cn/article/iejeh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部