How do I get all rows in a dataframe (DateTimeIndex) whose index belongs in the index of another dataframe (DateTimeIndex with no time specified) ?
For example,
I have a dataframe (df1) which contains data for multiple days but only in the hours of 2pm-6pm. I have another dataframe (df2) which contains data for multiple days but no hour is specified. How do I access all rows in df1 that are in df2?
Below are snapshots of part of df1 and df2,