1
我有一個函數foo在數據幀上運行;特別是數據幀的兩列。 因此,像,熊貓:複製SASs proc意味着通過屬性out = agg
def foo(group):
A = group['A']
B = group['B']
r1 = somethingfancy(A,B) #this is now a float
r2 = somethinggreat(A,B) #this is another float
return {'fancy':r1,'great':r2}
的問題是,我想在下列情況下使用此功能:
grouped = otherDF[['someAttribute','A','B']].groupby(['someAttribute'])
agg = grouped.apply(foo)
的問題是,AGG,現已形成系列化DICT的。我想將它轉換爲數據幀,將基本上是這樣的:
someAttribute, fancy, great
... , ... , ...
真棒。謝謝! – tipanverella