How to pick specific columns Pandas dataframe when checking against NaN

前端 未结 3 883
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-25 07:52

I have a pandas dataframe in Python that looks something like

       AccountID_x    AccountId  AmountCD_x  AmountDOC_x  AmountDoc_x  
1              NaN  4001001         


        
3条回答
  •  隐瞒了意图╮
    2021-01-25 08:13

    You can use combine_first to combine the two

    df['new_col'] = df['AccountId'].combine_first(df['AccountID_x'])
    
    df['new_col']
    
    1    4001001copa
    2    4001001copa
    3    4001001copa
    4    4001001copa
    

提交回复
热议问题