熊猫数据替换问题

时间:2018-07-27 03:57:22

标签: python pandas

Table A :
y  type
1   a
1   a
0   b
1   c
0   b
1   a
------------
Table B
type   x
 a    0.1
 b    0.2
 c    0.3
------------

我想用B中相应的x替换A.type。 因此,我想要的结果是:

y  type
1  0.1
1  0.1
0  0.2
1  0.3

1 个答案:

答案 0 :(得分:0)

使用pd.Series.map

A['type'] = A.type.map(B.set_index('type').x)

    y   type
0   1   0.1
1   1   0.1
2   0   0.2
3   1   0.3
4   0   0.2
5   1   0.1