Python-比较DataFrames中具有2个条件的值

时间:2019-12-02 00:59:29

标签: python pandas dataframe

我有2个看起来像这样的数据框:

Df1:

 Color    Date
 Green   25-12
Yellow   24-11
  Blue   13-11

Df2:

 Color   min_date   max_date
 Green      22-12      27-12
Yellow      11-11      17-12
  Blue      11-11      15-11

我想用“颜色”和“标记”列创建另一个数据框,以了解该颜色及其在df1中的相应日期是否与该颜色及其在df2中的两个日期(两者之间)匹配。

输出应如下所示:

 Color  Mark
 Green     1
Yellow     0
  Blue     1

0 个答案:

没有答案