python统计excel文本单元格_Python统计excel表格中文本的词频,生成词云图片

import xlrd

import jieba

import pymysql

import matplotlib.pylab as plt

from wordcloud import WordCloud

from collections import Counter

import numpy as np

def getExcelData(excel,txt):

readbook = xlrd.open_workbook(excel)

sheet = readbook.sheet_by_index(2) #取第二个sheet页

rows = sheet.nrows

i = 0

while i < rows:

txt += sheet.cell(i, 2).value #取第三列的值

i += 1

seg_list = jieba.cut(txt)

c = Counter()

result = {}

for x in seg_list:

if len(x) > 1 and x != ‘\r\n‘:

c[x] += 1

for (k, v) in c.most_common():

result[k] = v #放到字典中,用于生成词云的源数据

return result

def makeWordCloud(txt):

x, y = np.ogrid[:300, :500]

mask = (x - 150) ** 2 + (y - 150) ** 2 > 150 ** 2

mask = 255 * mask.astype(int)

wc = WordCloud(background_color="white",

max_words=500,

mask=mask,

repeat=True,

width=1000,

height=1000,

scale=4, #这个数值越大,产生的图片分辨率越高,字迹越清晰

font_path="C:\Windows\Fonts\STXINGKA.TTF")

wc.generate_from_frequencies(txt)

wc.to_file(‘abc.png‘)

plt.axis("off")

plt.imshow(wc, interpolation="bilinear")

plt.show()

if __name__ == ‘__main__‘:

txt = ‘‘

makeWordCloud(getExcelData(‘getdata.xlsx‘, txt))

原文:https://www.cnblogs.com/ning-blogs/p/10491361.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值