Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a data table in R:

library(data.table)
set.seed(1234)
DT <- data.table(x=rep(c(1,2,3),each=4), y=c("A","B"), v=sample(1:100,12))
DT
      x y  v
 [1,] 1 A 12
 [2,] 1 B 62
 [3,] 1 A 60
 [4,] 1 B 61
 [5,] 2 A 83
 [6,] 2 B 97
 [7,] 2 A  1
 [8,] 2 B 22
 [9,] 3 A 99
[10,] 3 B 47
[11,] 3 A 63
[12,] 3 B 49

I can easily sum the variable v by the groups in the data.table:

out <- DT[,list(SUM=sum(v)),by=list(x,y)]
out
     x  y SUM
[1,] 1 A  72
[2,] 1 B 123
[3,] 2 A  84
[4,] 2 B 119
[5,] 3 A 162
[6,] 3 B  96

However, I would like to have the groups (y) as columns, rather than rows. I can accomplish this using reshape:

out <- reshape(out,direction='wide',idvar='x', timevar='y')
out
     x SUM.A SUM.B
[1,] 1    72   123
[2,] 2    84   119
[3,] 3   162    96

Is there a more efficient way to reshape the data after aggregating it? Is there any way to combine these operations into one step, using the data.table operations?

share|improve this question
Your displayed values do not reflect the y argument you are using. – DWin Aug 1 '11 at 17:33
@DWin: Thanks, that should be fixed now. – Zach Aug 1 '11 at 18:13

4 Answers

up vote 14 down vote accepted

Data.table objects inherit from 'data.frame' so you can just use tapply:

> tapply(DT$v,list(DT$x, DT$y), FUN=sum)
   AA  BB
a  72 123
b  84 119
c 162  96
share|improve this answer
2  
+1 nice use of tapply. i often forget the power of base R – Ramnath Aug 1 '11 at 17:43
Will this function be significantly faster than using tapply on a data.frame? – Zach Aug 1 '11 at 17:50
1  
I don't know. I'm guessing not. Fastest would be DT[, sum(v), by=list(x, y) ] but it doesn't result in the layout you requested. – DWin Aug 1 '11 at 17:58
1  
I suppose it's best to think about this as a 2-step operation. Step one is DT[, sum(v), by=list(x, y)], which works great. Step 2 is to reshape the result from long to wide... I'm trying to figure out the best way to do this with a data table – Zach Aug 1 '11 at 18:05
2  
i benchmarked the three approaches using dcast, tapply and data.table and found that tapply works the fastest by an order of magnitude which is surprising given that data.table is optimized. i suspect it is on account of not defining keys on which the data.table optimization works – Ramnath Aug 1 '11 at 21:25
show 2 more comments

I just saw this great chunk of code from Arun here on SO. So I guess there is a data.table solution. Applied to this problem:

library(data.table)
set.seed(1234)
DT <- data.table(x=rep(c(1,2,3),each=1e6), 
                  y=c("A","B"), 
                  v=sample(1:100,12))

out <- DT[,list(SUM=sum(v)),by=list(x,y)]
# edit (mnel) to avoid setNames which creates a copy
# when calling `names<-` inside the function
out[, as.list(setattr(SUM, 'names', y)), by=list(x)]
})
   x        A        B
1: 1 26499966 28166677
2: 2 26499978 28166673
3: 3 26500056 28166650

This gives the same results as DWin's approach:

tapply(DT$v,list(DT$x, DT$y), FUN=sum)
         A        B
1 26499966 28166677
2 26499978 28166673
3 26500056 28166650

Also, it is fast:

system.time({ 
   out <- DT[,list(SUM=sum(v)),by=list(x,y)]
   out[, as.list(setattr(SUM, 'names', y)), by=list(x)]})
##  user  system elapsed 
## 0.64    0.05    0.70 
system.time(tapply(DT$v,list(DT$x, DT$y), FUN=sum))
## user  system elapsed 
## 7.23    0.16    7.39 

UPDATE

So that this solution also works for non-balanced data sets (i.e. some combinations do not exist), you have to enter those in the data table first:

library(data.table)
set.seed(1234)
DT <- data.table(x=c(rep(c(1,2,3),each=4),3,4), y=c("A","B"), v=sample(1:100,14))

out <- DT[,list(SUM=sum(v)),by=list(x,y)]
setkey(out, x, y)

intDT <- expand.grid(unique(out[,x]), unique(out[,y]))
setnames(intDT, c("x", "y"))
out <- out[intDT]

out[, as.list(setattr(SUM, 'names', y)), by=list(x)]

Summary

Combining the comments with the above, here's the 1-line solution:

DT[, sum(v), keyby = list(x,y)][CJ(unique(x), unique(y)), allow.cartesian = T][,
   setNames(as.list(V1), paste(y)), by = x]

It's also easy to modify this to have more than just the sum, e.g.:

DT[, list(sum(v), mean(v)), keyby = list(x,y)][CJ(unique(x), unique(y)), allow.cartesian = T][,
   setNames(as.list(c(V1, V2)), c(paste0(y,".sum"), paste0(y,".mean"))), by = x]
#   x A.sum B.sum   A.mean B.mean
#1: 1    72   123 36.00000   61.5
#2: 2    84   119 42.00000   59.5
#3: 3   187    96 62.33333   48.0
#4: 4    NA    81       NA   81.0
share|improve this answer
Good benchmarking! – mnel Mar 19 at 23:49
Thanks. And thanks for the edit! – Christoph_J Mar 19 at 23:51
Thanks! That's some excellent code. One question: what can I do if the each subgroup doesn't necessarily have all the columns? E.g. if there was a value for y of C, that was only present when x=4? – Zach Apr 4 at 20:08
@Zach Great comment! I recently tried my solution on a large data set and it didn't work, but didn't figure out why. Thanks to your comment, I know now. So basically, you have to update the data.table first and manually insert all combinations. (I do that with expand.grid, but I'm sure there are better solutions out there). I wondered if this is overkill, but I don't see how. As soon as you reshape a table into wide format, you are creating all combinations anyways. I think that's a big advantage of the long format: for sparsely densily matrices, this is more efficient. – Christoph_J Apr 4 at 21:43
2  
I think that data.table's cross-join (CJ) would work as a replacement for expand.grid above. intDT<-out[,list(x,y)]; setkey(intDT,x,y); intDT<-intDT[CJ(unique(x),unique(y))]; It runs faster on my system, which I would expect for a pure data.table solution. – Matt May 16 at 19:36
show 4 more comments

You can use dcast from reshape2 library. Here is the code

# DUMMY DATA
library(data.table)
mydf = data.table(
  x = rep(1:3, each = 4),
  y = rep(c('A', 'B'), times = 2),
  v = rpois(12, 30)
)

# USE RESHAPE2
library(reshape2)
dcast(mydf, x ~ y, fun = sum, value_var = "v")

NOTE: The tapply solution would be much faster.

share|improve this answer

After some research into this issue, it seems that there is no data.table-specific reshape method. The best way to work with data table is to do all your aggregation in long format, and then as a last step reshape it wide (if needed).

share|improve this answer
1  
To be fair, it took a while...but Arun posted a solution on another post that I replicated here. What do you think? – Christoph_J Mar 19 at 23:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.