> > a<-as.data.frame(matrix(rnorm(100),nrow=10,ncol=10))
> > b<-which(a$V1>0.8)
> > a_indexb<-a[b,]
> > a_notIndexB<-a[!b,]
> > nrow(a_notIndexB)
> [1] 0

> a_notIndexB <- a[-b,]
> nrow(a_notIndexB)
[1] 9


cu
        Philipp

-- 
Dr. Philipp Pagel
Lehrstuhl für Genomorientierte Bioinformatik
Technische Universität München
Wissenschaftszentrum Weihenstephan
85350 Freising, Germany
 
 and
 
Institut für Bioinformatik und Systembiologie / MIPS
Helmholtz Zentrum München -
Deutsches Forschungszentrum für Gesundheit und Umwelt
Ingolstädter Landstrasse 1
85764 Neuherberg, Germany
http://mips.gsf.de/staff/pagel

______________________________________________
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