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 に答える