我指的是本文档https://datatofish.com/if-condition-in-pandas-dataframe/
部分-(3) IF condition - strings
我正在尝试通过2种条件实现它:
x.loc[x.Test Status == 'Finished' and x.Results Validation == 'In Limits', 'Outcome'] = 'PASS'
我的语法错误。我该如何处理?我尝试了多种解决方法,例如np.where
,但是没有运气。