我正在寻找一种优雅的、类似 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
我正在寻找一种优雅的、类似 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