需要將兩列的唯一組合添加到熊貓中同一數據幀的幫助。 我想要那個「nos」列。熊貓:計算兩列的不同組合並添加到同一數據幀
Input:
id acct_nos name
1 1a one
1 1a two
2 2b three
3 3a four
3 3b five
3 3c six
3 3d seven
這裏是輸出欲:
Output:
id acct_nos nos name
1 1a 1 one
1 1a 1 two
2 2b 1 three
3 3a 4 four
3 3b 4 five
3 3c 4 six
3 3d 4 seven
在上面的例子 ID = 1僅具有1 acct_nos-1a上的nos必須具有值1 ID = 3具有隻有4個acct_nos-3a到3d所以nos必須有一個值4.
不知道如何把它放在Python Pandas中。我可以找出SQL查詢。
感謝
謝謝You.It工作。 – Arpit