powered by
Get the locations of start/end places for the ones in a binary vector.
start_end(x)
A vector of 1 and 0 or logical.
logical
Returns a two column data.frame of start and end locations for ones.
data.frame
http://stackoverflow.com/a/29184841/1000343
# NOT RUN { set.seed(10); (x <- sample(0:1, 50, TRUE, c(.35, .65))) start_end(x) (y <- sample(c(TRUE, FALSE), 50, TRUE, c(.35, .65))) start_end(y) # }
Run the code above in your browser using DataLab