If the period is X days, I want the slush to be summed over that time period(the time period is not equal to the length of the dataframe for each slush variable).
I want a new column A to show the Slush of that row + the prior slush within an appropriate period, where in this case, period = row.
I have checked other posts, I don't believe it is Cumsum as the value is not carried over indefinitely and instead is dropped after its period is over.
Data
| Slush | Period |
|---|---|
| 85 | 1 |
| 20 | 3 |
| 40 | 3 |
| 15 | 1 |
| 22 | 4 |
Desired Output:
| Slush | Period | A |
|---|---|---|
| 85 | 1 | 85 |
| 20 | 3 | 20 |
| 40 | 3 | 60 |
| 15 | 1 | 75 |
| 22 | 4 | 62 |