我一直在尝试找出如何根据数据帧的同一个元组中的多个其他值来选择某个值。数据看起来像这样(从当前数据帧复制)
DealID PropId LoanId ServicerId ServicerPropId
0 BAC98765 15 000015 30220144 010-002-001
1 BAC98765 16 000016 30220092 010-003-001
2 BAC98765 45 000045 30220155 010-045-001
3 BAC98765 48 000048 30220157 010-048-001
在 SQL 术语中,我想要完成的是:
Select ServicerPropId from dataframe
where DealID = 'BAC98765' and ServicerId = '30220144'
我尝试了几种不同的方法来对数据进行切片,但似乎无法弄清楚如何让多个选择标准起作用并只将 1 个值返回到变量中。