AccumulativeColumn

This example shows the usage of AccumulativeColumn process

datespent
2018-09-01 $142
2018-09-02 $90
2018-09-03 $123
2018-09-04 $164
2018-09-05 $423
2018-09-06 $343

->pipe(new AccumulativeColumn(array(
    "running_total"=>"spent"
)))
datespentrunning_total
2018-09-01 $142 $142
2018-09-02 $90 $232
2018-09-03 $123 $355
2018-09-04 $164 $519
2018-09-05 $423 $942
2018-09-06 $343 $1,285
Description