Description Usage Arguments Note See Also Examples
enum()
is creating a vector of integers to enumarate items in an object. It
is particularly useful in the for(i in enum(object))
construct.
1 | enum(x)
|
x |
Any object. |
The pattern for(i in 1:length(object))
is often found, but it fails
in case length(object) == 0
! enum()
is indeed a synonym of seq_along()
,
but the later one is less expressive in the context.
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.