标签: python pandas dataframe
我有两个数据帧df1,df2。
我想用与df2中相同的行号和列号更新值为“ yes”的df1,
我已附上图片供您参考。
我正在使用python和pandas。
谢谢
答案 0 :(得分:1)
使用where和combine_first
where
combine_first
df3=df2.where(df2=='Yes').combine_first(df1)