根据列值加入pandas数据帧

时间:2017-06-27 13:31:41

标签: python mysql sql pandas dataframe

我对pandas数据帧很新,我遇到了加入两个表的麻烦。

第一个df只有3列:

DF1:
item_id    position    document_id
336        1           10
337        2           10
338        3           10
1001       1           11
1002       2           11
1003       3           11
38         10          146

第二列完全相同的两列(还有很多其他的):

DF2
item_id    document_id    col1    col2   col3    ...
337        10             ...     ...    ...
1002       11             ...     ...    ...
1003       11             ...     ...    ...

我需要的是执行一个在SQL中看起来如下的操作:

DF1 join DF2 on 
DF1.document_id = DF2.document_id
and
DF1.item_id = DF2.item_id

因此,我希望看到DF2,补充了列'position':

item_id    document_id    position    col1   col2   col3   ...

使用pandas做这件事的好方法是什么?

谢谢!

1 个答案:

答案 0 :(得分:15)

我认为您需要使用默认inner加入merge,但必须在两列中都没有重复的值组合:

print (df2)
   item_id  document_id col1  col2  col3
0      337           10    s     4     7
1     1002           11    d     5     8
2     1003           11    f     7     0

df = pd.merge(df1, df2, on=['document_id','item_id'])
print (df)
   item_id  position  document_id col1  col2  col3
0      337         2           10    s     4     7
1     1002         2           11    d     5     8
2     1003         3           11    f     7     0

但如果位置position中有必要3列:

df = pd.merge(df2, df1, on=['document_id','item_id'])
cols = df.columns.tolist()
df = df[cols[:2] + cols[-1:] + cols[2:-1]]
print (df)
   item_id  document_id  position col1  col2  col3
0      337           10         2    s     4     7
1     1002           11         2    d     5     8
2     1003           11         3    f     7     0