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.
ベクトルから要素を選択し、それらが取得した位置によって3つの値を除外したいと思います。
単一の値を除外するx[-n]関数については知っていますが、複数の値を除外する方法がわかりません。
この関数を使用しcて、値をベクトルに結合できます。
c
a <- 1:10 a[-c(1,2,3)] [1] 4 5 6 7 8 9 10