我有大小为[10 * 2]的Pandas DataFrame和一个Pandas系列。我想根据系列中的值在DataFrame列['id']中找到匹配项。
Series
Id
2 0.3
3 0.2
4 0.1
DataFrame
Id ProductName
0 2 description1
3 3 description2
4 4 description3
5 5 description4
7 6 description5
我想匹配ID 2、3、4,例如:
expected result
0 True
3 True
4 True
5 False
7 False
最后,我尝试为我的系列中的ID打印产品名称,但是这些产品名称仅在DataFrame中可用。我的Series
的大小与DataFrame
的大小不同。