[R] deleting rows provisionally

Ben Bolker bolker at ufl.edu
Fri Apr 24 06:08:58 CEST 2009




onyourmark wrote:
> 
> I have an object. I think it is a matrix, called 'answer2'
>  str(answer2)
>  int [1:1537, 1:2] 1 399 653 2 3 600 4 5 271 870 ...
>  - attr(*, "dimnames")=List of 2
>   ..$ : chr [1:1537] "a4.1" "hirschsprung.399" "peritoneal.653"
> "abdomen.2" ...
>   ..$ : chr [1:2] "row" "col"
> 
> 
> I want to delete rows that have the same entries.
> 
> 

Your "for" loop didn't make any assignments.
How about 

answer3 <- answer2[-(answer2[,1]==answer2[,2]),]  

or

answer3 <- answer2[answer2[,1]!=answer2[,2],]  

(which will be much faster than a loop anyway)

?
-- 
View this message in context: http://www.nabble.com/deleting-rows-provisionally-tp23209365p23209468.html
Sent from the R help mailing list archive at Nabble.com.




More information about the R-help mailing list