seq_along_dim {listarrays} | R Documentation |
Sequence along a dimension
Description
Sequence along a dimension
Usage
seq_along_dim(x, which_dim)
seq_along_rows(x)
seq_along_cols(x)
Arguments
x |
a dataframe, array or vector. For |
which_dim |
a scalar integer or character string, specifying which dimension to generate a sequence for. Negative numbers count from the back. |
Value
a vector of integers 1:nrow(x), safe for use in for
loops and
vectorized equivalents.
Examples
for (r in seq_along_rows(mtcars[1:4,]))
print(mtcars[r,])
x <- 1:3
identical(seq_along_rows(x), seq_along(x))
[Package listarrays version 0.4.0 Index]