将熊猫列的值替换为另一列的值

时间:2018-07-23 23:01:33

标签: python image pandas dataframe

我有一个这样的数据框,比方说x:

enter image description here

还有另一个数据框,上面有关于labelNames的描述,让我们说y:

enter image description here

现在,如何将x中的LabelName替换为y中的描述? 知道x中的LabelNames不是唯一的

1 个答案:

答案 0 :(得分:1)

您可以使用索引匹配:

x = x.set_index('LabelName')
y = y.set_index('LabelName')

然后

x['Description'] = y.ClassDescription