0

我正在寻找一种优雅的、类似 R 的方法来捕获数据帧中没有在向量中列出其索引的行:

table.combos <- matrix(data = 1:12, nrow = 10, ncol = 6, byrow=T)
table.combos
not.these<-c(2,4,5,9)
x<-table.combos[c(not.these),]
#y<- everything not in x
4

1 回答 1

2

只需使用与以下相同的索引向量:

y <- table.combos[-not.these,]

它告诉选择所有行,table.combos但包含在not.these向量中的行。

于 2013-09-27T20:22:25.500 回答