gpt4 book ai didi

python - 在 pandas 数据框中逐行计算 CAGR?

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

我正在处理公司数据。我有一个大约 1900 家公司(索引)和每家公司 30 个变量(列)的数据集。这些变量总是三个成对出现(三个句点)。基本上看起来像这样

df = pd.DataFrame({'id' : ['1','2','3','7'],
'revenue_0' : [7,2,5,4],
'revenue_1' : [5,6,3,1],
'revenue_2' : [1,9,4,8],
'profit_0' : [3,6,4,4],
'profit_1' : [4,6,9,1],
'profit_2' : [5,5,9,8]})

我正在尝试计算 compound annual growth rate (CAGR)例如revenue对于每个公司 ( id ) - 这样 revenue_cagr = ((revenue_2/revenue_1)^(1/3))-1

我想将一个函数逐行传递给一组列 - 至少,这是我的想法。

def CAGR(start_value, end_value, periods): 
((end_value/start_value)^(1/periods))-1

是否可以对一组列逐行应用此函数(可能使用 for i, row in df.iterrows():df.apply() )?分别来说,有没有更聪明的方法来做到这一点?

更新

期望的结果 - 如 revenue_cagr 列所示- 应如下所示:

df = pd.DataFrame({'id' : ['1','2','3','7'],
'revenue_0' : [7,2,5,4],
'revenue_1' : [5,6,3,1],
'revenue_2' : [1,9,4,8],
'profit_0' : [3,6,4,4],
'profit_1' : [4,6,9,1],
'profit_2' : [5,5,9,8],
'revenue_cagr' : [-0.48, 0.65, -0.07, 0.26],
'profit_cagr' : [0.19, -0.06, 0.31, 0.26]
})

最佳答案

您可以使用set_index + str.rsplit首先是三元组:

df1 = df.set_index('id')
df1.columns = df1.columns.str.rsplit('_', expand=True, n=1)
print (df1)
profit revenue
0 1 2 0 1 2
id
1 3 4 5 7 5 1
2 6 6 5 2 6 9
3 4 9 9 5 3 4
7 4 1 8 4 1 8

然后除以 div xs 选择的所有具有 0 级别的 2 ,添加pow , subadd_suffix :

df1 = df1.xs('2', axis=1, level=1)
.div(df1.xs('0', axis=1, level=1))
.pow((1./3))
.sub(1)
.add_suffix('_cagr')
print (df1)
profit_cagr revenue_cagr
id
1 0.185631 -0.477242
2 -0.058964 0.650964
3 0.310371 -0.071682
7 0.259921 0.259921

最后join原文:

df = df.join(df1, on='id')
print (df)
id profit_0 profit_1 profit_2 revenue_0 revenue_1 revenue_2 \
0 1 3 4 5 7 5 1
1 2 6 6 5 2 6 9
2 3 4 9 9 5 3 4
3 7 4 1 8 4 1 8

profit_cagr revenue_cagr
0 0.185631 -0.477242
1 -0.058964 0.650964
2 0.310371 -0.071682
3 0.259921 0.259921

关于python - 在 pandas 数据框中逐行计算 CAGR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45278459/

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