How can I reshape this dataframe with Pandas
id | col1 | col2 | col3 | value
-----------------------------------
1 | A1 | B1 | before | 20
2 | A1 | B1 | after | 13
3 | A1 | B2 | before | 11
4 | A1 | B2 | after | 21
5 | A2 | B1 | before | 18
6 | A2 | B1 | after | 22
... into the following format?
col1 | col2 | before | after
-------------------------------
A1 | B1 | 20 | 13
A1 | B2 | 11 | 21
A1 | B1 | 18 | 22
EDIT: A1 in the last line of the second table is supposed to be A2.
As the data is paired (e.g. "before" and "after") I need the columns to be aligned without 'NAs'.
df.pivot(index='col1', columns='col3', values='value')
does not work because col1 does not result in an unique index. I could create an additional column which would result in being unique. Is that the only way to go?
