On 30-11-2012, at 05:47, C W wrote: > David, > Your results is, > >> samples > > [1] 111 NA 111 NA 111 NA 111 NA 111 NA > It still has NA's in it. I want it look like this, > >> samples > > [1] 111 111 111 111 111
You don't need the for loop at all. samples <- x[x<200] or samples <- x[which(x<200)] Your for loop should look something like this k <- 1 for(i in 1:10){ if(x[i]<200){ samples[k] <- x[i] k <- k+1 } } na.omit(samples) Berend ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.