So I have two columns of data in my dataframe. TimeDeltasDiffs and ActualTime. First row of the dataframe has a start time in the ActualTime column. I want to populate the ActualTime column incrementally based on a time delta value in the current row.
I've used apply and lambdas for other operations on this dataframe. e.g.
df_mrx['Log Timestamp'] = df_mrx['Log Timestamp'].apply(lambda x: '00:' + x)
But not sure how to use that based on previous values as I am iterating ...
Any help would be greatly appreciated.