Dave Caccace wrote: > Hallo > I want to remove the fth, f+pth, f+2pth element from a > vector and I'm not sure how to do this. Any help woudl > be much appreciated! > Thank You, > Dave x <- x[- c(f, f+p, f+2*p)] Sundar