On Nov 9, 2012, at 9:07 AM, rlcorp wrote:

> I also would like to sort the values that are greater than 10 in one vector
> and less than or equal to 10 in another vector. 
> 

x <- 1:20
x[x>10]
x[x<=10]

-- 

David Winsemius, MD
Alameda, CA, USA

______________________________________________
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.

Reply via email to