I have a data frame like this
Item Value Date
A 30 01/01/2010
A 50 01/02/2010
A 70 01/03/2010
A 50 01/04/2010
B 10 01/01/2010
B 15 01/02/2010
B 23 01/03/2010
B 11 01/04/2010
And I would like to convert it to a dataframe looking like this
Date A B
01/01/2010 30 10
01/02/2010 50 15
01/03/2010 70 23
01/04/2010 50 11
Keeping one line per date with all the information of each item, how can I do that?