In R, what would be the most efficient/simplest way to count runs of identical elements in a sequence?
For example, how to count the numbers of consecutive zeros in a sequence of non-negative integers:
x <- c(1,0,0,0,1,0,0,0,0,0,2,0,0) # should give 3,5,2
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…