pandas将值从一个帧分配给所选行中另一个帧中的相应列

时间:2018-04-27 14:42:51

标签: python pandas

DF1
|col1 |  col2 |  col3 |
  12     v1      v12
  3      v3      v13
  5      v5      v14
  7      v10     v15

DF2
|col2| col3|
  x1  y2
  x2  y1

output DF1
|col1 |  col2 |  col3 |
  12     x2      y1
  3      v3      v13
  5      v5      v14
  7      x1     y2

我想将FD1中的行7,12设置为DF2的值而不显式指定列

像DF1 [7,12] = DF2

这样的东西

2 个答案:

答案 0 :(得分:5)

您需要使用update

df2.index=[0,3]# change the index you want to update in df1, then just using update 
df1.update(df2)
df1
Out[404]: 
   col1 col2 col3
0    12   x1   y2
1     3   v3  v13
2     5   v5  v14
3     7   x2   y1

答案 1 :(得分:0)

仅使用.loc声明:

DF1.loc[DF1.col1.isin([12,7]), 'col2'] = DF2.col2.values

返回:

>>> DF1
   col1 col2 col3
0    12   x1  v12
1     3   v3  v13
2     5   v5  v14
3     7   x2  v15