ベクトルにインデックスがリストされていないデータフレーム内の行をキャプチャする、エレガントで 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