Skip to content
Advertisement

Python Pandas compare two dataframe and keep only data that index appears in both dataframe

I have two dataframe, and would like to keep only row that both matches exactly on index (in this case datetime), and would like to return as two separate dataframe accordingly.

JavaScript

Desired output:

JavaScript

Advertisement

Answer

Use align with inner join:

JavaScript

*Note this will align both index and columns (which works for the provided sample), however, we can also specify the axis to only align the index if needed:

JavaScript

new_df1:

JavaScript

new_df2:

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