R:如何访问rle对象中的元素?

时间:2018-01-25 16:45:29

标签: r

我写了这样的代码:

cf = rbinom(100, 1, 0.1)
count = rle(cf)

这将返回一个包含两个列表的rle对象。 (长度和价值)。假设我想访问长度列表中的第3个元素。我怎样才能做到这一点?我尝试了count[1][3]count[1, 3],但它没有用。

1 个答案:

答案 0 :(得分:0)

#convert to a dataframe, then access third row, 1st column   
data.frame(count[1])[3,1]