如何将所有列附加到Pandas中的一列中?

时间:2017-08-29 02:34:29

标签: python pandas

我正在尝试通过pandas库将数据框的列附加到一列:

DF就是表:enter image description here

oneCol = []
colLength = len(finalDF)
for k in range(colLength):
    oneCol.append(DF[k])
combined = pd.DataFrame(oneCol)
combined

但输出为enter image description here

我所追求的只是一个列数据帧。 谢谢。

1 个答案:

答案 0 :(得分:2)

combined = pd.concat(oneCol, ignore_index=True)