exceeds_tumbling_sum.Rd
The tumbling sum is calculated as the partial cumulative sum of a vector
until a threshold is exceeded. Once this happens, the tumbling sum is
calculated from zero again. exceeds_tumbling_sum()
returns TRUE
whenever
this threshold is hit/exceeded and FALSE
otherwise.
exceeds_tumbling_sum(x, threshold, inclusive = TRUE)
x | a |
---|---|
threshold | a |
inclusive | a |
a logical
vector of the same length as x
that is TRUE
whenever
threshold
was exceeded and FALSE
otherwise
This is for example useful if you have high frequency GPS positions
and want to keep only points that are at least x
seconds apart.
MESS::cumsumbinning()
does something very similar, but returns
group indices instead of a logical vector.
#> [1] FALSE TRUE FALSE TRUE