I have 2 dataframes.
dfA has 848 rows
dfB has 600 rows
Both have Date column as Index.
I want to find the 600 rows in dfA that match the dates in dfB -- dfA should end with 600 rows that match dfB.
Trying something like below but isn't working...
dfA.iloc(dfB.index)