Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!
DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Snippets has posted 5886 posts at DZone. View Full User Profile

Delete Particular Rows From Matrix.

05.26.2005
Email
Views: 8365
  • submit to reddit
        
> x <- matrix(1:10,,2)
> x[x[,1]%in%c(2,3),]
> x[!x[,1]%in%c(2,3),]

from Peter Malewski or from Peter Dalgaard:

> mat[!(mat$first %in% 713:715),]