用列值更新pandas groupby group

时间:2018-11-19 11:51:29

标签: python python-3.x pandas pandas-groupby

我有一个这样的测试df:

df = pd.DataFrame({'A': ['Apple','Apple', 'Apple','Orange','Orange','Orange','Pears','Pears'],
                    'B': [1,2,9,6,4,3,2,1]
                   })
       A    B
0   Apple   1
1   Apple   2
2   Apple   9
3   Orange  6
4   Orange  4
5   Orange  3
6   Pears   2
7   Pears   1

现在,我需要在col'B'中添加一个具有相应%差的新列。这怎么可能。我无法使它正常工作。

我看过 update column value of pandas groupby().last() 不确定与我的问题有关。

这看起来很有希望 Pandas Groupby and Sum Only One Column

我需要查找和插入col maxpercchng(组中的所有行)每组col'A'的col(B)的最大变化。 所以我想出了这段代码:

grouppercchng = ((df.groupby['A'].max() - df.groupby['A'].min())/df.groupby['A'].iloc[0])*100

并尝试将其添加到“ maxpercchng”组中

group['maxpercchng'] = grouppercchng

还是这样

df_kpi_hot.groupby(['A'], as_index=False)['maxpercchng'] = grouppercchng

有人知道如何将maxpercchng col添加到组中的所有行吗?

1 个答案:

答案 0 :(得分:0)

我相信您需要transform来购买具有与原始DataFrame相同大小的系列,并用聚合值填充:

g = df.groupby('A')['B']
df['maxpercchng'] = (g.transform('max') - g.transform('min')) /  g.transform('first') * 100

print (df)

        A  B  maxpercchng
0   Apple  1        800.0
1   Apple  2        800.0
2   Apple  9        800.0
3  Orange  6         50.0
4  Orange  4         50.0
5  Orange  3         50.0
6   Pears  2         50.0
7   Pears  1         50.0

或者:

g = df.groupby('A')['B']
df1 = ((g.max() - g.min()) / g.first() * 100).reset_index()
print (df1)

        A      B
0   Apple  800.0
1  Orange   50.0
2   Pears   50.0