I would like to know is there a way to pandas to detect if some date are missing from a datetime index ? I got two columns with some dates and a mileage of car. My goal is to complete my missing dataframes with an average of the miles by day on the missing days.
Actual
2020-10-26,2232
2020-10-27,2260
2020-12-27,4813
Objective
2020-10-26,2232
2020-10-27,2260
2020-10-28,
2020-10-29,
[...]
2020-12-26,
2020-12-27,4813