"Time Since" is an important transform when working with time-series. It is
defined as a transform that takes a series:
0,1,0,0,0,0
And transforms it to
NaN,0,1,2,3,4
This is technically a bit challenging, since you need the entire available
series to avoid truncating locally. Won't be too hard once I write a more
robust way to fetch previous-data for each chunk.
"Time Since" is an important transform when working with time-series. It is defined as a transform that takes a series:
And transforms it to
This is technically a bit challenging, since you need the entire available series to avoid truncating locally. Won't be too hard once I write a more robust way to fetch previous-data for each chunk.