Lets say i Have 3 Pandas DF
DF1
 Words      Score
 The Man     2
 The Girl    4
Df2
 Words2      Score2
The Boy       6
The Mother    7
Df3
Words3       Score3
The Son        3
The Daughter   4
Right now, I have them concatenated together so that it becomes 6 columns in one DF. That's all well and good but I was wondering, is there a pandas function to stack them vertically into TWO columns and change the headers?
So to make something like this?
Family Members     Score
The Man             2
The Girl            4
The Boy             6
The Mother          7
The Son             3
The Daughter        4
everything I'm reading here http://pandas.pydata.org/pandas-docs/stable/merging.html seems to only have "horizontal" methods of joining DF!