[R] loop for a large database

chuck.01 CharlieTheBrown77 at gmail.com
Sun Feb 26 18:56:33 CET 2012


Untested die to no data, but this should work with a loop

out=vector("list", length= length(MyVector))

for(i in 1 : length (MyVector))
          { 
 x <- data.frame (sum (MyTable ==MyVector[i])) 
 out[[i]] <- x
            }
sum(do.call(rbind, out))

--
View this message in context: http://r.789695.n4.nabble.com/loop-for-a-large-database-tp4422052p4422584.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list