list.skip {rlist} | R Documentation |
Skip the first n
elements of a list or vector and
return the remaining elements if any.
list.skip(.data, n)
.data |
A |
n |
|
list.skipWhile
, list.take
,
list.takeWhile
x <- list(a=1,b=2,c=3) list.skip(x, 1) list.skip(x, 2)