How can I find the row number of a particular row name in R? I have found functions which allow you to find a row number for a particular matrix value, but not from a row na
You can use which
which
which(rownames(dat) == "theName")