I have a huge dataframe with several funds and dates and I would like to know if there is an easy and fast way to transform a dataframe that looks like this:
#this is just a sample
Name 01/01/2016 01/02/2016 01/03/2016
Fund1 1 2 3
Fund2 4 5 6
Fund3 7 8 9
Into something like this:
Fund1 01/01/2016 1
Fund1 01/02/2016 2
Fund1 01/03/2016 3
Fund2 01/01/2016 4
Fund2 01/02/2016 5
Fund2 01/03/2016 6
Fund3 01/01/2016 7
Fund3 01/02/2016 8
Fund3 01/03/2016 9
Thanks in advance