有没有一种方法可以将三个数据帧收集到一个数据帧中?

时间:2019-01-21 16:19:45

标签: python

我有三个数据帧,我只想将它们收集到一个数据帧中。我尝试使用pandas软件包进行此操作,但是没有出现第三列。

例如:

# [1] TRUE
# Called from: value[[3L]](cond)
# Browse[1]> 

当我尝试通过以下方式收集它们时:

Fil1.txt        
A   B    C
1   2    3
red blue gree

File2.txt       
A    B   C
2    3   5
type dog cat

File3.txt       
F   H   G
7   5   6
red dog blue 

我得到这张桌子:

all_dataframe=pd.concat([pd_table1, pd_table2, pd_table3], axis=1, sort=False, ignore_index=False)

要创建此表,我使用了以下代码:

Fil1.txt       …    File3.txt       
A   B   C      …    F   H   G
1   2   3      …    7   5   6
red blue gree  …    red dog blue

预期结果将是: enter image description here

0 个答案:

没有答案