ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

2.安装Spark与Python练习

2022-03-02 12:01:26  阅读:155  来源: 互联网

标签:Python items 代码 练习 stop words Spark txt counts


一、安装Spark

配置文件

image

试运行Python代码

image

二、Python编程练习:英文文本的词频统计

1. 准备文本文件

image

2.读文件

path='/home/hadoop/wc/f1.txt' with open(path) as f: txt=f.read()

3.预处理
大写转小写

txt = txt.lower()

标点符号
点击查看代码
for ch in '!"@#$%^&*()+,-./:;<=>?@[\\]_`~{|}':
    txt=txt.replace(ch," ")
words = txt.split()

停用词

stop_words = ['so','out','all','for','of','to','on','in','if','by','under','it','at','into','with','about','i','am','are','is','a','the','and','that','before','her','she','my','be','an','from','would','me','got'] lenwords=len(words)

4.统计每个单词出现的次数
点击查看代码
counts = {}
for word in afterwords:
    counts[word] = counts.get(word,0) + 1
items = list(counts.items())
items.sort(key=lambda x:x[1],reverse=True)
i=1
while i<=len(items):
    word,count = items[i-1]
    print("{0:<20}{1}".format(word,count))
    i=i+1
5.按词频大小排序
点击查看代码
for i in range(lenwords):
    z=1
    for j in range(len(stop_words)):
        if words[i]==stop_words[j]:
            continue
        else:
            if z==len(stop_words):
                afterwords.append(words[i])
                break
            z=z+1
            continue
##### 6.结果写文件
点击查看代码
f1= open("test01.txt", "w",encoding='UTF-8')
f1.write(str(items))
print("文件写入成功")
##### 7.运行结果 ![image](https://www.icode9.com/i/l/?n=22&i=blog/2369516/202203/2369516-20220302114934655-253627971.png)

标签:Python,items,代码,练习,stop,words,Spark,txt,counts
来源: https://www.cnblogs.com/yyxxll/p/15954420.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有