I have two data frames (db1 and db2) and I want to get positions in db2 that match some arguments in db1. This could be achieve using a for loop as follows:
db1 <- data.frame(id=rep(1:4,each=4),
class=sample(1:10, 16, replace=TRUE),
var=rnorm(16)
)
db2 <- expand.grid(id=1:4, class=1:10)
db2$x <- rnorm(nrow(db2))
for(i in 1:nrow(db1)) print(which(db2$id==db1$id[i] & db2$class==db1$class[i]))
However loops are very inefficient so I would like vectorizing this loop. It could be possible to pass a vector to the which() function so this functions search in db2 for each values in db1?
db2around the positions (+/- n positions) and add them todb1data set. I think my actual problem is that bothdb1(3x10^6 obs) anddb2(1x10^6 obs) are huge. – Manuel Ramón Jun 5 '12 at 10:58