Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
長さが等しくない a と b の 2 つのベクトルがあり、長さ (a) は b 未満です。
intersect(a,b) の値を含む 'a' のインデックスを見つけたいと思います。どうすればこれを達成できますか?
何かのようなもの
a <- list(1,2,3,4,5) b <- list(6,2,1,5,7,9,10)
ainの要素の位置を特定するにはb、次を使用します。
a
b
which(a %in% b) # [1] 1 2 5
これは、aとbがベクトルの場合にも機能a <- c(1,2,3,4,5)します。b <- c(6,2,1,5,7,9,10)
a <- c(1,2,3,4,5)
b <- c(6,2,1,5,7,9,10)