Below a small example of a dataframe that i have. Every User have 2 rows and i want to merge the 2 into 1 row.
(Original dataframe)
USER       DETAIL          TEAM         VALUE
JohnDoe    Disponibily     Architect    107
JohnDoe    Capacity        Architect    240
JamesDean  Disponibily     Coder        80
JamesDean  Capacity        Coder        110
I'm trying to achieve something like this with pandas :
USER       TEAM            Disponibily  Capacity
JohnDoe    Architect       107          240
JamesDean  Coder           80           110
Any help would be greatly appreciated.
 
    