gpt4 book ai didi

pandas - 基于 Pandas 列值的条件乘法

转载 作者:行者123 更新时间:2023-12-04 23:12:38 27 4
gpt4 key购买 nike

我有一个数据框如下:

index  client year  value
1 A 2011 5
2 A 2012 10
...
8 A 2018 7
9 B 2011 14
10 B 2012 54
...
... Z 2011 5

我需要使用与年份相关的值来乘以这些值。我有一个系列如下:
2011  2
2012 2.5
2013 3
2014 3.5
...
2018 5.5

我需要所有年份的值乘以这些年份相关值。例如。它看起来像
index  client year  value
1 A 2011 10
2 A 2012 25
...etc

我现在写了一个循环来做到这一点,但它远非优雅和高效。如何高效而优雅地做到这一点?

最佳答案

使用 reindex

df.value*=s.reindex(df.year).values
df
Out[44]:
index client year value
0 1 A 2011 10.0
1 2 A 2012 25.0

关于pandas - 基于 Pandas 列值的条件乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53068650/

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