How to check if a value in one dataframe is present in keys in the other dataframe

后端 未结 2 696
半阙折子戏
半阙折子戏 2021-01-27 22:43

I have two dataframes:

df_1:

         Letters Boolean
          a         Nan
          b         Nan
          c         Nan

df_2:

2条回答
  •  遥遥无期
    2021-01-27 23:29

    Use numpy.where with isin:

    df1['Boolean'] = np.where(df1['Letters'].isin(df2.columns), 'x', np.nan)
    

提交回复
热议问题