gpt4 book ai didi

Python for 循环优化

转载 作者:行者123 更新时间:2023-12-04 15:22:44 25 4
gpt4 key购买 nike

给定如下所示的 DataFrame:

     id  days  cluster
0 aaa 0 0
1 bbb 0 0
2 ccc 0 1
3 ddd 0 1
4 eee 0 0
5 fff 0 1
6 ggg 1 0
7 hhh 1 1
8 iii 1 0
9 lll 1 1
10 mmm 1 1
11 aaa 1 3
12 bbb 1 3

我的目标是创建一个字典,其中包含 id 列元素的键元组,如果两个 id 具有相同的 cluster 值,均按 days 列过滤。即,如果 days 发生变化,但 id 元素的元组具有相同的 cluster 值,我想将此值添加到我的 already现有列表。所需的输出报告如下:

{('aaa', 'bbb'): [0, 3],('aaa', 'eee'): [0], ('bbb', 'eee'): [0], ('ccc', 'ddd'): [1], 
('ccc', 'fff'): [1], ('ddd', 'fff'): [1], ('ggg', 'iii'): [0],
('hhh', 'lll'): [1], ('hhh', 'mmm'): [1], ('lll', 'mmm'): [1]}

我使用以下代码片段获得了这个结果,但是对于数百万行它变得太慢了。如何优化代码?

y={}
for i in range(0, max(df.iloc[:,1]) + 1):
x = df.loc[df['days'] == i]
for j in range(0,l en(x)):
for z in range(1, len(x)):
if (x.iloc[z,0], x.iloc[j,0]) in y:
pass
else:
if (x.iloc[j,0], x.iloc[z,0]) not in y:
if x.iloc[j,0] != x.iloc[z,0] and x.iloc[j,2] == x.iloc[z,2]:
y[(x.iloc[j,0], x.iloc[z,0])] = [x.iloc[j,2]]
else:
if x.iloc[j,0] != x.iloc[z,0] and x.iloc[j,2] == x.iloc[z,2]:
y[(x.iloc[j,0], x.iloc[z,0])].append(x.iloc[j,2])

最佳答案

考虑到瓶颈是获取id的组合,为什么不留到最后呢?

按 id 对数据进行分组,每个 id 将显示一组找到它的“bins”(day,cluster):

grouped = collections.defaultdict(set)
for index, (id_, day, cluster) in df.iterrows():
grouped[id_].add((day, cluster))

对于找到的每个 bin 组合,列出属于每个 bin 的 id:

binned = collections.defaultdict(list)
for id_, bins in grouped.items():
binned[tuple(sorted(bins))].append(id_)

如果需要,只按集群进行简化:

clustered = collections.defaultdict(list)
for bins, ids in binned.items():
clusters = set(cluster for (day, cluster) in bins)
clustered[tuple(sorted(clusters))].extend(ids)

最后,获取每个 cluster bin 的 id 组合应该不是问题:

for bins, ids in clustered.items():
if len(ids) > 1:
for comb_id in itertools.combinations(ids, 2):
print(bins, comb_id)
# or do other stuff with it

关于Python for 循环优化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62956820/

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