I have a list of data.frames. Each data.frame is not very big ~150,000 rows. But my list has over 1000s of these data.frames.
a data.frame looks like:
comp <- read.table(text = " G T H S B
1 1 1 1 x1
1 1 1 2 x2
1 2 6 1 x3
1 2 6 2 x4
2 1 7 1 x1
2 2 8 2 x2
2 2 8 1 x1
2 3 9 2 x2",header=TRUE,stringsAsFactors=FALSE)
so a list is:
complist <- list(comp,comp,comp)
I want to know for every data.frame, (comp), the length of B for each S in each H in each T in each G.
so for my small practice I use:
library(plyr)
listresults <- lapply(complist, function(x) {
res <- ddply(x, .(G,T,H,S),
function(z) data.frame(resultcol = length(z$B)) )
} )
But on my larger list this is bruuutally long, could someone help me find a quicker way? Aggregate is not the option here, and I have been failing with a sapply(split)) alternative to the ddply. Suggestions even if not actual code will be just as helpful to me.
data.tableapproach actually finished, although it will take some learning. – user1322296 Jan 28 at 15:29