gpt4 book ai didi

python - 如何从 pandas 系列元素中获取 "aggregate"字数

转载 作者:太空宇宙 更新时间:2023-11-03 15:38:18 24 4
gpt4 key购买 nike

我目前在带有 pandas 0.23.4 的 Jupyter Notebook (v5.6.0) 中使用 python3.7。

我编写了代码来标记一些日语单词,并成功应用了一个字数统计函数,该函数返回 pandas 系列中每一行的字数统计,如下所示:

0       [(かげ, 20), (モリア, 17), (たち, 15), (お前, 14), (おれ,...
1 [(お前, 11), (ゾロ, 10), (うっ, 10), (たち, 9), (サンジ, ...
2 [(おれ, 11), (男, 6), (てめえ, 6), (お前, 5), (首, 5), ...
3 [(おれ, 19), (たち, 14), (ヨホホホ, 12), (お前, 10), (みん...
4 [(ラブーン, 32), (たち, 14), (おれ, 12), (お前, 12), (船長...
5 [(ヨホホホ, 19), (おれ, 13), (ラブーン, 12), (船長, 11), (...
6 [(わたし, 20), (おれ, 16), (海賊, 9), (お前, 9), (もう, 9...
7 [(たち, 21), (あたし, 15), (宝石, 14), (おれ, 12), (ハッ,...
8 [(おれ, 13), (あれ, 9), (もう, 7), (ヨホホホ, 7), (見え, 7...
9 [(ケイミー, 23), (人魚, 20), (はっち, 14), (おれ, 13), (め...
10 [(ケイミー, 18), (おれ, 17), (め, 14), (たち, 12), (はっち...

来自这个先前提出的问题:

Creating a dictionary of word count of multiple text files in a directory

我想我可以使用这个答案来帮助实现我的目标。

我想将每一行中的所有上述对合并到一个字典中,其中键是日语文本,值是数据集中出现的所有文本实例的总和。我认为我可以使用 collections.Counter 模块来完成此操作,方法是将系列中的每一行都变成字典,如下所示:

vocab_list = []
for i in range(len(wordcount)):
vocab_list.append(dict(wordcount[i]))

这给了我想要的字典格式,系列中的每一行现在都是一个字典,如下所示:

[{'かげ': 20,
'モリア': 17,
'たち': 15,
'お前': 14,
'おれ': 11,
'もう': 9,
'船長': 7,
'っ': 7,
'七武海': 7,
'言っ': 6, ...

当我尝试使用 sum() 函数和 Counter() 来汇总总数时,我的问题来了:

vocab_list = sum(vocab_list, Counter())
print(vocab_list)

我没有得到预期的“聚合字典”,而是收到以下错误:

---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-37-3c66e97f4559> in <module>()
3 vocab_list.append(dict(wordcount[i]))
4
----> 5 vocab_list = sum(vocab_list, Counter())
6 vocab_list

TypeError: unsupported operand type(s) for +: 'Counter' and 'dict'

您能解释一下代码中到底有什么问题以及如何解决吗?

最佳答案

如果你的系列中的元素是 Counter 类型,你可以简单地通过 sum 聚合

df.agg(sum)

例子:

from collections import Counter

df = pd.Series([[('かげ', 20), ('男', 17), ('たち', 15), ('お前', 14)],[('お前', 11), ('ゾロ', 10), ('うっ', 10), ('たち', 9)],[('おれ', 11), ('男', 6), ('てめえ', 6), ('お前', 5), ('首', 5)]])
df = df.apply(lambda x: Counter({y[0]:y[1] for y in x}))

df
# Out:
# 0 {'かげ': 20, '男': 17, 'たち': 15, 'お前': 14}
# 1 {'お前': 11, 'ゾロ': 10, 'うっ': 10, 'たち': 9}
# 2 {'おれ': 11, '男': 6, 'てめえ': 6, 'お前': 5, '首': 5}
# dtype: object

df.agg(sum)
# Out:
# Counter({'うっ': 10,
# 'おれ': 11,
# 'お前': 30,
# 'かげ': 20,
# 'たち': 24,
# 'てめえ': 6,
# 'ゾロ': 10,
# '男': 23,
# '首': 5})

关于python - 如何从 pandas 系列元素中获取 "aggregate"字数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53889657/

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