Find row number from a row name in R

前端 未结 1 1928
有刺的猬
有刺的猬 2021-01-12 00:28

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

相关标签:
1条回答
  • 2021-01-12 01:15

    You can use which

    which(rownames(dat) == "theName") 
    
    0 讨论(0)
提交回复
热议问题