I have a dataframe that looks like this
brand|1 |2 |3
---------------
a |a1|a2|a3
b |b1|b2|b3
And I want the result dataframe to look like this
brand|rank|value
----------------
a |1 |a1
a |2 |a2
a |3 |a3
b |1 |b1
b |2 |b2
b |3 |b3
I have tried pandas melt function but it doesn't work for me since a1,a2,···b3 are all characters not numbers. I'm wondering how I can do this in python.
1) Using
set_index
andstack
2) Using
melt