Skip to content
Advertisement

Comparing two pandas dataframes for differences

I’ve got a script updating 5-10 columns worth of data , but sometimes the start csv will be identical to the end csv so instead of writing an identical csvfile I want it to do nothing…

How can I compare two dataframes to check if they’re the same or not?

JavaScript

Any ideas?

Advertisement

Answer

You also need to be careful to create a copy of the DataFrame, otherwise the csvdata_old will be updated with csvdata (since it points to the same object):

JavaScript

To check whether they are equal, you can use assert_frame_equal as in this answer:

JavaScript

You can wrap this in a function with something like:

JavaScript

There was discussion of a better way…

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement