I have a dataframe, which looks like
import pandas as pd
df=pd.DataFrame({'group': ['bmw', 'bmw', 'audi', 'audi', 'mb'],
'date': ['01/20', '02/20', '01/20', '02/20','01/20'],
'value1': [1,2,3,4,5],
'value2': [6,7,8,9,10]})
I want to make it wider and be look like
I tried to find a solution here, but did not find it. Could you help to create the new table?