Find the starting indices of runs in a vector.

rsi(x)

Arguments

x

a vector of data.

Value

a vector of indices indicating starting points for runs

Examples

rsi(c(0,0,0,1,2,2,3,3,3,3,3,4))
#> [1]  1  4  5  7 12