row {base}
Description
Returns a matrix of integers indicating their row number in a matrix-like object, or a factor indicating the row labels.
Usage
row(x, as.factor = FALSE)
Arguments
- x
- a matrix-like object, that is one with a two-dimensional
dim. - as.factor
- a logical value indicating whether the value should be returned as a factor of row labels (created if necessary) rather than as numbers.
Values
An integer (or factor) matrix with the same dimensions as x and whose ij-th element is equal to i (or the i-th row label).
References
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
See Also
col to get columns.
Examples
Documentation reproduced from R 2.15.3. License: GPL-2.
