I'm using a very large data set with about 3 million observations, and I want to go through and essentially combine certain observations if they meet specific requirements. I've written a for loop to do this, below, but it is very inefficient. Is there a more efficient way, say with an apply function or something else, that could improve this?
nobs <- nrow(acsdata)
for (i in 2:nobs){
if (acsdata[i,6]==1 & acsdata[(i-1),6]==1) acsdata[(i-1),3]=2
if (acsdata[i,6]==1 & acsdata[(i-1),6]==1) acsdata[(i-1),21:30]=acsdata[(i-1),21:30]+acsdata[i,21:30]
if (acsdata[i,6]==1 & acsdata[(i-1),6]==1) acsdata[(i),31]=1
}
Any help would be greatly appreciated. Thanks!