I have a dataframe with 2 columns: name and value:
name value
received 63
received.tod 12
received.daybf 50
mantioned workings
houses located
I want to turn it into this:
received received.tod received.daybf mantioned houses
63 12 50 workings located
So as you see values from first column became columns, and values from second column became values in those columns accordingly. How could i do that?