Sample Data:
DT = data.table(x=rep(c("b","a","c"),each=3), y=c(1,3,6), v=1:99)
l <- as.numeric(sample(1:99, 21))
How to remove each row where the value $v
of the datatable DT
is identical with a value of :
DT$v == l[ i ]
Sample Data:
DT = data.table(x=rep(c("b","a","c"),each=3), y=c(1,3,6), v=1:99)
l <- as.numeric(sample(1:99, 21))
How to remove each row where the value $v
of the datatable DT
is identical with a value of :
DT$v == l[ i ]