吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3288|回复: 7
收起左侧

[Python 转载] python生成词云

[复制链接]
luoshiyong123 发表于 2019-12-10 16:17
[Python] 纯文本查看 复制代码
 
# import
from wordcloud import WordCloud
import matplotlib.pyplot as plt
import csv
 
# 打开文件
file = open(r"C:\Users\lsy\Desktop\1234.txt")
 
# reader object 
reader = csv.reader(file)
 
# contents of reader object is stored .
# data is stored in list of list  format.
reader_contents = list(reader)
 
text = ""
 
# iterating through list of rows
for row in reader_contents :
 
 #  iterating through words in the row
 for word in row :
 
  # concatenate the words
  text = text + " " + word
 
# show only 10 words in the wordcloud .
wordcloud = WordCloud(width=480,  height=480, max_words=10).generate(text)
 
# plot the WordCloud image
plt.figure()
plt.imshow(wordcloud,  interpolation="bilinear")
plt.axis("off")
plt.margins(x=0, y=0)
plt.show()

免费评分

参与人数 2吾爱币 +3 热心值 +2 收起 理由
Futuresing + 1 用心讨论,共获提升!
苏紫方璇 + 3 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| luoshiyong123 发表于 2019-12-10 17:50
twostudy 发表于 2019-12-10 17:15
首先,谢谢楼主的分享。
感觉是不是要加点说明比较好,起码我想知道1234.txt里文件是什么样子的?最后的结 ...

词云词云,我觉得看到代码很好理解呀,自己不给词哪有云?txt里边就是你自己想生成的词,至于最后的结果运行一下就能看到了,如果不去运行看到结果了又有什么用呢?如果希望很详细的话我下次发帖加点说明好了
twostudy 发表于 2019-12-10 17:15
首先,谢谢楼主的分享。
感觉是不是要加点说明比较好,起码我想知道1234.txt里文件是什么样子的?最后的结果大概又是什么样子的。
随梦期初 发表于 2019-12-10 22:44
cj13888 发表于 2019-12-11 09:54
值得一试,谢谢分享
twostudy 发表于 2019-12-11 12:21
luoshiyong123 发表于 2019-12-10 17:50
词云词云,我觉得看到代码很好理解呀,自己不给词哪有云?txt里边就是你自己想生成的词,至于最后的结果运 ...

好的,谢谢楼主回复。
Futuresing 发表于 2019-12-11 13:50
谢谢分享
zucker 发表于 2020-4-8 16:26
为啥generate不准,误差很大,frequencies还准点,为什么呢
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-17 05:29

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表