gpt4 book ai didi

python - 根据 Pandas 中另一列的值添加新列(python)

转载 作者:太空宇宙 更新时间:2023-11-04 08:37:13 25 4
gpt4 key购买 nike

给定一个看起来像这样的数据框

Vote A Vote B
1 4
3 2
1 5

我想添加一个名为 Winner 的新列,用于比较 Vote AVote B 两列之间的值并指定获胜者。

Winner
B
A
B

我如何在 Pandas 中执行此操作?

最佳答案

你可以使用

def winner(row):
if row['Vote A'] > row['Vote B']:
return 'A'
elif row['Vote A'] < row['Vote B']:
return 'B'
else:
return ''

df['Winner'] = df[['Vote A','Vote B']].apply(winner, axis=1)

哪个产量

Vote A  Vote B  Winner
1 4 B
3 2 A
1 5 B

关于python - 根据 Pandas 中另一列的值添加新列(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48081927/

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