How can one determine the row index-numbers corresponding to particular row names? I have a vector of row names, and I would like to use these to obtain a vector of the corresponding row indices in a matrix.
I tried row()
and as.integer(rownames(matrix.object))
, but neither seems to work.