我有一张这样的桌子

   Upper    Lower
0    1        4
1    4        3
2    0        4
3    2        1
4    4        2

我想用下面的两个系列来填充UpperLower
df1:
0  A
1  B
2  C
3  D
4  E

df2:
0  a
1  b
2  c
3  d
4  e

所以,答案是
   Upper    Lower
0    B        e
1    E        d
2    A        e
3    C        b
4    E        c

最佳答案

同时使用Series.map

df['Upper'] = df['Upper'].map(df1)
df['Lower'] = df['Lower'].map(df2)

关于python - 填充其他拖车数据框中的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57090501/

10-15 22:51