如何在下面的代码中使用groupby?我需要按水果计算出差异。因此,香蕉的差异不应有10。
df['diff'] = df.loc[df['Important'] == 'True', 'year'].diff()
fruit year Important diff
apple 1994 True
apple 1995 True 1
banana 2005 True 10
banana 1998
...