gpt4 book ai didi

python - 从列表python中找到最大平均值

转载 作者:太空宇宙 更新时间:2023-11-03 12:22:59 25 4
gpt4 key购买 nike

我有一个列表:

input= [
["Pakistan", 23],
["Pakistan", 127],
["India", 3],
["India", 71],
["Australia", 31],
["India", 22],
["Pakistan", 81]
]

现在我只想过滤掉具有最高平均值的键值。就像在这种情况下输出应该是“巴基斯坦”:

out = "Pakistan"

谁能帮忙

最佳答案

您可以使用 Pandas:

import pandas as pd

l = [
["Pakistan", 23],
["Pakistan", 127],
["India", 3],
["India", 71],
["Australia", 31],
["India", 22],
["Pakistan", 81]
]

pd.DataFrame(l).groupby([0]).mean().idxmax().values[0]

输出:

'Pakistan'

关于python - 从列表python中找到最大平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47880551/

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