python 英语词频统计_Python 英文词频统计

近年来,随着自动识别、数据捕获及存储技术的发展,各行业产生的数据量急剧增长。本文探讨了大数据分析的关键议题及其在解决商业问题上的具体应用。

article ='''Big data analytics and business analytics

by Duan, Lian; Xiong, Ye

Over the past few decades, with the development of automatic identification, data capture and storage technologies,

people generate data much faster and collect data much bigger than ever before in business, science, engineering, education and other areas.

Big data has emerged as an important area of study for both practitioners and researchers.

It has huge impacts on data-related problems.

In this paper, we identify the key issues related to big data analytics and then investigate its applications specifically related to business problems.'''split=article.split()print(split)#使用空格替换标点符号

article = article.replace(",","").replace(".","").replace(":","").replace(";","").replace("?","")#大写字母转换成小写字母

exchange =article.lower();print(exchange)#生成单词列表

list =exchange.split()print(list)#生成词频统计

dic ={}for i inlist:

count=list.count(i)

dic[i]=countprint(dic)#排除特定单词

word = {'and','the','with','in','by','its','for','of','an','to'}for i inword:del(dic[i])print(dic)#排序

dic1= sorted(dic.items(),key=lambda d:d[1],reverse=True)print(dic1)#输出词频最大的前十位单词

for i in range(10):print(dic1[i])

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值