共计 589 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 concat()
函数来连接两个表。具体的用法如下:
import pandas as pd
# 创建两个表
table1 = pd.DataFrame({'A': [1, 2, 3],
'B': ['a', 'b', 'c']})
table2 = pd.DataFrame({'A': [4, 5, 6],
'B': ['d', 'e', 'f']})
# 使用 concat 函数连接两个表
result = pd.concat([table1, table2])
print(result)
输出结果为:
A B
0 1 a
1 2 b
2 3 c
0 4 d
1 5 e
2 6 f
在 concat()
函数中,可以传入一个列表作为参数,包含需要连接的表。默认情况下,concat()
函数按行连接表,即按照纵向的方式进行连接。如果需要按列连接表,可以设置 axis
参数为1
。
result = pd.concat([table1, table2], axis=1)
如果两个表的列名不一致,可以使用 ignore_index
参数来重置索引。
result = pd.concat([table1, table2], ignore_index=True)
丸趣 TV 网 – 提供最优质的资源集合!
正文完