I want to pick elements from a vector and exclude 3 values by what position they got.
I know about the x[-n] function to exclude a single value but I don“t know how to exclude more than one.
You could use the c function to combine the values into a vector:
c
a <- 1:10 a[-c(1,2,3)] [1] 4 5 6 7 8 9 10
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 months ago
viewed
56 times
active
2 months ago