[R] removing particular row from matrix

Rui Barradas rui1174 at sapo.pt
Tue Feb 21 17:24:02 CET 2012


Hello,

Try


a<-matrix(c(1,2,3,4,4,5,6,6,-999.99,5,9,-999.00),nrow=4)
ix <- apply(a, 1, function(x) sum(trunc(x) != -999) == ncol(a))
a[ix, ]

Hope this helps

Rui Barradas


--
View this message in context: http://r.789695.n4.nabble.com/removing-particular-row-from-matrix-tp4407401p4407490.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list