标签: pandas
当我试图对它们进行汇总时,熊猫groupby返回item_prices的多个值吗?
df.groupby(['order_id']).agg({'item_price':'sum'})
此汇总为我提供了所有item_price的列表,而不是将它们汇总:
df output
original df
答案 0 :(得分:0)
请尝试以下操作:
df.groupby('order_id')['item_price'].sum()