The dataframe contains information in this format:
Type        Value
-------------------
catA        one
catB        two
catA        three
My target is to convert the dataframe to this format (Type's values as columns):
catA        catB
-----------------
 one          -
  -          two
three         -
I have been looking into "dummy variables" but it's not what I need. ¿Could someone give me some ideas?
 
     
     
    