如何根据相同的 id 列将 python pandas 中的 3 个系列连接到数据帧 [duplicate]

How to concatenate 3 series in python pandas to dataframe based on same id column [duplicate]

提问人:Kristy 提问时间:10/17/2023 最后编辑:Kristy 更新时间:10/17/2023 访问量:35

问:

我有 3 个系列,每个人的时间指标都不同,如下所示:

系列一:

enter image description here

系列2:

enter image description here

系列3:

enter image description here

我想将这些系列合并为一个数据帧,如下所示:

enter image description here

我尝试过concat,但似乎无法合并,因此它将“名称”列保留为键ID。

谢谢!

Python Pandas DataFrame 系列

评论

0赞 mozway 10/17/2023
df1.merge(df2, on='Name', how='left').merge(df3, on='Name', how='left')

答:

1赞 boyu 10/17/2023 #1

尝试对名称列进行排序,然后按列进行连接