Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
vec <- 1:10 print(vec) vec <- vec[-(4:7)] print(vec) # run: # # [1] 1 2 3 4 5 6 7 8 9 10 # [1] 1 2 3 8 9 10 #