本文介绍了如何计算序列中的运行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在R中,对序列中相同元素的运行计数的最有效/最简单的方法是什么?
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
推荐答案
使用rle():
y <- rle(c(1,0,0,0,1,0,0,0,0,0,2,0,0))
y$lengths[y$values==0]
这篇关于如何计算序列中的运行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!