【发布时间】:2014-11-25 19:51:19
【问题描述】:
假设我有 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
现在,我将它们连接在一起,使其成为一个 DF 中的 6 列。这一切都很好,但我想知道,是否有一个 pandas 函数可以将它们垂直堆叠成两列并更改标题?
所以要制作这样的东西?
Family Members Score
The Man 2
The Girl 4
The Boy 6
The Mother 7
The Son 3
The Daughter 4
我在这里阅读的所有内容http://pandas.pydata.org/pandas-docs/stable/merging.html 似乎只有“水平”加入 DF 的方法!
【问题讨论】:
标签: python python-3.x pandas