I have a dataframe df
id email firstname lastname salutation
2be858a0458faa569d3d user_a@gmail.com Lastname
2be858a0458faa569d3d user_a@gmail.com Firstname
2be858a0458faa569d3d user_a@gmail.com Firstname Mr
I want to have a consolidated dataframe df_consolidated
2be858a0458faa569d3d user_a@gmail.com Firstname Lastname Mr
The logic should be that it takes all values from df and "sums" them up to one row.
Any idea?