아미(아름다운미소)

pandas Coalesce 본문

랭귀지/pandas

pandas Coalesce

유키공 2024. 8. 6. 10:02
# A와 B의 결합 후 C와 결합
df['coalesce'] = df['A'].combine_first(df['B']).combine_first(df['C'])

print(df)
Comments