It's fairly easy to split a data.frame by rows depending on a grouping factor. But how do I split by columns and possibly apply a function?
my.df <- data.frame(a = runif(10),
b = runif(10),
c = runif(10),
d = runif(10))
grp <- as.factor(c(1,1, 2,2))
What I would like to have is a mean of colums by groups.
What I have so far is a poor man's apply.
lapply(as.list(as.numeric(levels(grp))), FUN = function(x, cn, data) {
rowMeans(data[grp %in% x])
}, cn = grp, data = my.df)
EDIT Thank you all for participating. I ran 10 replicates* and my working data.frame has roughly 22000 rows. These are the results in seconds.
Roman: 2.19
Joris: 4.60
Joris #2: 3.79 #changed sapply to lapply as suggested by Joris in the [R chatroom][1].
Gavin: 4.70
James & EDi: > 200 # * ran only one replicate due to the large order of magnitude difference
It struck me as odd that there is no wrapper function for the task at hand. Maybe someday we'll be able to do
apply(X = my.df, MARGIN = 3, INDEX = my.groups, FUN = mean) # :)