Assume I have two dataframe with same structure, and I know row 1 in the dfA is also in dfB.
I am wondering how to find the location of row 1 in dfB.
For example, I have a dfA as shown in the graph. If I know there exist a same row3 in dfB. How can I find the location of row3 (age: 53, workclass: Private) in dfB. ( dfA and dfB both has around 40000 rows, and has same number of features.)
Thank you in advance.