I have a question about my dataset. I want to check which date + time is missing in my dataframe (see image). DF I want to know this for the columns named 'starttime' and 'endtime'.
How can I solve this?
I tried
pd.date_range(start = '2019-01-01 00:00:00', end = '2022-12-31 23:00:00' ).difference(allmerged.index)
but this is not working.
Trying the suggested code in the comments results in this output: output image