Beginner panda/python user. I am using 24 hour data in pandas dataframe, however there is often no data for the last few minutes of the day.
I simply need to append rows onto each file until the last Timestamp reaches 23.59, and forward fill those last few minutes with data. So this:
19-12-2016 00:00 2 0.003232323
...
19-12-2016 23:53 2 0.002822919
19-12-2016 23:54 4 0.002822919
19-12-2016 23:55 1 0.002822919
becomes:
19-12-2016 00:00 2 0.003232323
...
19-12-2016 23:53 2 0.002822919
19-12-2016 23:54 4 0.002822919
19-12-2016 23:55 1 0.002822919
19-12-2016 23:56 1 0.002822919
19-12-2016 23:57 1 0.002822919
19-12-2016 23:58 1 0.002822919
19-12-2016 23:59 1 0.002822919
Unfortunately the code I am using for this is really long and I can't pinpoint exactly where I could amend this.