pandas合并两个数据帧时如何找到缺少的匹配列值

时间:2017-12-18 17:57:41

标签: python-3.x pandas dataframe

在名为df的列的值上匹配两个A(比如Bid_number)时,我正在尝试识别A中的行,在B中找不到匹配的ID号,例如A就像,

id_number    name
1            a
2            b
3            c

B就像,

id_number    year
1            2007
2            2010
4            2008

我想在has_b中创建一个名为A的布尔列,结果为,

id_number    name    has_b
1            a       True
2            b       True
3            c       False

我想知道如何实现上述数据框架。

0 个答案:

没有答案