我有一个名为dat的数据框。我在名为maxIndex.numeric的数字向量中有行索引。我想从dat中检索与maxIndex.numeric向量中的值对应的所有行名。我尝试了以下操作,但错误如下所示:
rownames(subset(dat,x == maxIndex.numeric))
字符(0) 警告信息: 在x == maxIndex.numeric中: 较长的物体长度不是较短物体长度的倍数
由于
答案 0 :(得分:0)
这应该这样做:
rownames(dat)[maxIndex.numeric]