gpt4 book ai didi

python - 如何跨多个文本文件查找字典中键的频率?

转载 作者:行者123 更新时间:2023-11-30 09:57:31 25 4
gpt4 key购买 nike

我应该计算文档“individual-articles”中所有文件中字典“d”的所有键值的频率这里,文档“individual-articles”大约有20000个txt文件,文件名为1,2,3,4...例如:假设 d[Britain]=[5,76,289] 必须返回英国出现在属于文档“个人文章”的文件 5.txt,76.txt,289.txt 中的次数,而且我还需要找出它在同一文档中所有文件中的频率。我需要将这些值存储在另一个 d2 中对于同一个例子,d2 必须包含 (Britain,26,1200),其中 26 是单词 Britain 在文件 5.txt、76.txt 和 289.txt 中的频率,1200 是单词 Britain 在所有文件中的频率。我是一个Python新手,我尝试的很少!请帮忙!!

import collections
import sys
import os
import re
sys.stdout=open('dictionary.txt','w')
from collections import Counter
from glob import glob
def removegarbage(text):
text=re.sub(r'\W+',' ',text)
text=text.lower()
sorted(text)
return text


folderpath='d:/individual-articles'
counter=Counter()


filepaths = glob(os.path.join(folderpath,'*.txt'))


d2={}
with open('topics.txt') as f:
d = collections.defaultdict(list)
for line in f:
value, *keys = line.strip().split('~')
for key in filter(None, keys):
d[key].append(value)

for filepath in filepaths:
with open(filepath,'r') as filehandle:
lines = filehandle.read()
words = removegarbage(lines).split()
for k in d.keys():
d2[k] = words.count(k)

for i in d2.items():
print(i)

最佳答案

嗯,我不太确定文档“X”中的所有文件是什么意思,但我认为它类似于书中的页面。有了这个解释,我会尽力以最简单的方式存储数据。将数据放入易于操作的位置可以提高以后的效率,因为您始终可以添加用于完成所需输出的方法和类型。

由于您正在查看的主键似乎是关键字,因此我将使用此结构创建一个嵌套的 python 字典

dict = (keyword:{file:count})

一旦采用这种形式,您就可以非常轻松地对数据进行任何类型的操作。

要创建这个字典,

import os
# returns the next word in the file
def words_generator(fileobj):
for line in fileobj:
for word in line.split():
yield word
word_count_dict = {}
for dirpath, dnames, fnames in os.walk("./"):
for file in fnames:
f = open(file,"r")
words = words_generator(f)
for word in words:
if word not in word_count_dict:
word_count_dict[word] = {"total":0}
if file not in word_count_dict[word]:
word_count_dict[word][file] = 0
word_count_dict[word][file] += 1
word_count_dict[word]["total"] += 1

这将创建一个易于解析的字典。

想要英国的总字数吗?

word_count_dict["Britain"]["total"]

想知道英国出现在文件 74.txt 和 75.txt 中的次数吗?

sum([word_count_dict["Britain"][file] if file in word_count_dict else 0 for file in ["74.txt", "75.txt"]])

想要查看包含“British”一词的所有文件吗?

[file for key in word_count_dict["Britain"]]

您当然可以编写通过简单调用来执行这些操作的函数。

关于python - 如何跨多个文本文件查找字典中键的频率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17186253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com