将数据框列匹配到不同大小的系列

时间:2019-07-08 15:37:24

标签: python dataframe series

我有大小为[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的大小不同。

0 个答案:

没有答案