I have a dataframe with a date column where some of the dates are missing. I would like to fill these with the day after the date from the previous row.
date
0 2015-01-31
1 NaT
2 2015-02-02
So for example in the data frame above, row 1 would be imputed with 2015-02-01. I would like to achieve this without reindexing!