
Last chance! 50% off unlimited learning
Sale ends in
col(x, as.factor = FALSE)
dim
.x
and whose
ij
-th element is equal to j
(or the j
-th column label).
row
to get rows.
# extract an off-diagonal of a matrix
ma <- matrix(1:12, 3, 4)
ma[row(ma) == col(ma) + 1]
# create an identity 5-by-5 matrix
x <- matrix(0, nrow = 5, ncol = 5)
x[row(x) == col(x)] <- 1
Run the code above in your browser using DataLab