私はこれに使用plyr
します。ただし、最初にデータを読んでください。
dat = read.csv(textConnection("1 0
1 2
1 3
1 5
1 9
1 4
1 7
1 11
1 8
2 3
2 4
2 2
3 9
3 0
4 0
5 0
5 13
6 22
6 0"), header = FALSE, sep = "")
そして、plyrをロードした後、列にV1
等しい値のみを持つ一意のカテゴリを見つけて、リストを作成したいと思います。neg
V2
true_values
require(plyr)
neg = 0
test = ddply(dat, .(V1), summarise, bool = all(V2 == neg))
> test
V1 bool
1 1 FALSE
2 2 FALSE
3 3 FALSE
4 4 TRUE
5 5 FALSE
6 6 FALSE
true_values = test[["V1"]][test[["bool"]]]
> true_values
[1] 4
このリストを取得したら、元のデータセットをサブセット化できます。
> dat[dat[["V1"]] %in% true_values,]
V1 V2
15 4 0
または、次の要素から選択する要素を直接指定するブールベクトルを生成することもできますdat
。
test = ddply(dat, .(V1), mutate, bool = all(V2 == neg))
...そしてサブセットを実行します:
> dat[test[["bool"]],]
V1 V2
15 4 0