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