RollingFunctions.jl
RollingFunctions.jl copied to clipboard
rollsum, runsum
Thanks for this package! I kindly request rollsum and runsum functions. And more documentation on the custom functions running(function, data, windowsize).
using RollingFunctions
rollsum(data, windowsize) = rolling(sum, data, windowsize)
runsum(data, windowsize) = running(sum, data, windowsize)
hope that helps -- I will add the examples to the README.md