gpt4 book ai didi

python - 根据 Pandas Dataframe 中的条件将两列相乘?

转载 作者:行者123 更新时间:2023-12-04 03:36:50 24 4
gpt4 key购买 nike

我正在尝试将 Pandas 数据框中的两列相乘,但我正在努力这样做。
当 y 大于 0 时,我需要将 x 列乘以 y 列。否则,x 需要保持原样
enter image description here
最终结果应如下表所示:
enter image description here

最佳答案

让我们试试

df['new'] = df.x*df.y.replace(0,1)
Out[346]:
0 150.0
1 187.5
2 460.0
3 500.0
4 30.0
dtype: float64

关于python - 根据 Pandas Dataframe 中的条件将两列相乘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66727774/

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