Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to reconcile two separate dataframes. Each row within the two dataframes has a unique id that I am using to match the two dataframes. Without using a loop, how can I reconcile one dataframe against another and vice-versa?

I tried merging the two dataframes on an index (unique id) but the problem I run into when I do this is when there are duplicate rows of data. Is there a way to identify duplicate rows of data and put that data into an array or export it to a CSV?

Your help is much appreciated. Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

Try DataFrame.duplicated and DataFrame.drop_duplicates

share|improve this answer
I recently found this function. However, I don't think it checks duplicates against the index. Is there any way I can convert the index back into a column of the dataframe? Thanks. – scriptdiddy Sep 26 '12 at 3:11
Use DataFrame.reset_index for that, but do you want to check for duplicated indices or duplicated row values? – Chang She Sep 26 '12 at 3:20
Preferably I would like to check both – scriptdiddy Sep 26 '12 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.