gpt4 book ai didi

python - 有没有比 idxmax 更快的替代方法?

转载 作者:太空狗 更新时间:2023-10-30 02:24:56 25 4
gpt4 key购买 nike

<分区>

import time
np.random.seed(0)
df = pd.DataFrame({'gr': np.random.choice(7000, 500000),
'col': np.random.choice(1000, 500000)})
groups = df.groupby('gr')
t1 = time.time()
idx = groups.col.idxmax()
print(round(time.time() - t1,1))
0.7

有没有办法比使用 idxmax() 更快地获得这些指数?

注意,我对idx.values感兴趣,我不介意丢失idxidx.index() 系列

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