I've to calculate so called competition index for a couple of the experiments. I have known position of the object and its size. I'd like to calculate the sum of the sizes in a certain radius and the sum of the distances to the objects that are within this radius. The example of the data are here:
set.seed(13181938)
df <- data.frame(exp = rep(LETTERS[1:20], each = 100), x = rnorm(1000, 100, 50),
y = rnorm(1000, 100, 50), di = rnorm(5, 2, 2))
df$comp1 <- 0
df$dist <- 0
I used a loop for calculations but it takes a lot of time to complete the calculation for 1000 objects. In the real data set I have more than 10000 objects.
fori <- function(x) {
for (i in 1:nrow(x)){
for (j in 1:nrow(x)){
dist = sqrt((x$x[j] - x$x[i])^2 + (x$y[j] - x$y[i])^2)
#print(paste(x$exp[i], x$exp[j], dist))
if(dist < 2 & x$exp[i] == x$exp[j]){
x$comp1[i] = x$comp1[i] + x$di[j]
x$dist[i] = x$dist[i] + dist
}
}
}
df <- data.frame(x)
return(df)
}
abc <- fori(df)
It takes a very long time to run this loop for the example and it means that it will take much more for the entire data set. Can you suggest any other way? I tried apply
and DT
but without success.