Delete comment from: One R Tip A Day
cyclemumner said...
Hi, nice blog :)
## another way
x <- array(1:3, dim = c(4,5))
x[duplicated(x), ]
[1] 1 2 3 1 2
Mar 3, 2008, 3:35:00 PM
Hi, nice blog :)
## another way
x <- array(1:3, dim = c(4,5))
x[duplicated(x), ]
[1] 1 2 3 1 2
Mar 3, 2008, 3:35:00 PM