与df.loc一起使用groupby

时间:2020-09-29 09:25:52

标签: python python-3.x pandas dataframe

如何在下面的代码中使用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              
...

0 个答案:

没有答案