I'm trying to count the frequency of each word in an excel sheet which is structured as bellow,
and expecting the output to be like this
```f=pd.read_excel('test.xlsx', header=None)
f.columns = ["id","information"]
f['count']=1
f.groupby(['id']).count()
f.to_excel('output.xlsx')```