Another option is to backlink to yourself
indx <- sort.int(dt[unique(dt), on = c(x = "y", y = "x"), which = TRUE, nomatch = 0L])
dt[indx]
# x y
# 1: 1 4
# 2: 4 1
# 3: 6 2
# 4: 2 6
dt[-indx]
# x y
# 1: 3 7
# 2: 5 1
Benchmark . If you don't need order, my solution seems to be faster for 200MM strings (both solutions are unordered)
set.seed(123)
bigdt <- data.table(x = sample(1e3, 2e8, replace = TRUE),
y = sample(1e3, 2e8, replace = TRUE))
system.time(i1 <- bigdt[, .I[.N>1] ,.(X=pmax(x,y), Y=pmin(y,x))]$V1)
system.time(indx <- bigdt[unique(bigdt), on = c(x = "y", y = "x"), which = TRUE, nomatch = 0L])
is.unsorted(i1)
is.unsorted(indx)
identical(sort.int(i1), sort.int(indx))
And here is a non-degenerate case (where indx != bigdt[, .I]):
set.seed(123)
n = 1e7
nv = 1e4
DT <- data.table(x = sample(nv, n, replace = TRUE), y = sample(nv, n, replace = TRUE))
library(microbenchmark)
microbenchmark(
akrun = {
idx = DT[, .I[.N > 1], by=.(pmax(x,y), pmin(x,y))]$V1
list(DT[idx], DT[-idx])
},
akrun2 = {
idx = DT[,{
x1 <- paste(pmin(x,y), pmax(x,y))
duplicated(x1)|duplicated(x1, fromLast=TRUE)
}]
list(DT[idx], DT[!idx])
},
davida = {
idx = DT[unique(DT), on = c(x = "y", y = "x"), which = TRUE, nomatch = 0L]
list(DT[idx], DT[-idx])
},
akrun3 = {
n = DT[, N := .N, by = .(pmax(x,y), pmin(x,y))]$N
DT[, N := NULL]
split(DT, n > 1L)
}, times = 1)
Unit: seconds
expr min lq mean median uq max neval
akrun 7.056609 7.056609 7.056609 7.056609 7.056609 7.056609 1
akrun2 22.810844 22.810844 22.810844 22.810844 22.810844 22.810844 1
davida 2.738918 2.738918 2.738918 2.738918 2.738918 2.738918 1
akrun3 5.662700 5.662700 5.662700 5.662700 5.662700 5.662700 1