I must be doing something wrong because this function is not finishing.

I am trying to aggregate some data by week. The data is broken up into id and weeknumber. I'd like the result to have the id's as rows, the weeks as columns, and the totals as the values.

Example of what I've tried so far (tried a bunch of other things, including adding a dummy variable = 1 and then fun.aggregating=sum over that):

ddply(data, .(id), dcast, id~weeknumber, value_var="id", 
        fun.aggregate=length, fill=0, .parallel=TRUE)

Is there a better way to do this?

Input:

id      week
1       1
1       2
1       3
1       1
2       3

Output:

  1  2  3
1 2  1  1
2 0  0  1
link|improve this question

79% accept rate
feedback

2 Answers

up vote 9 down vote accepted

You don't need ddply for this. The dcast from reshape2 is sufficient:

dat <- data.frame(
    id = c(rep(1, 4), 2),
    week = c(1:3, 1, 3)
)

library(reshape2)
dcast(dat, id~week, fun.aggregate=length)

  id 1 2 3
1  1 2 1 1
2  2 0 0 1

Edit : For a base R solution (other than table - as posted by Joshua Uhlrich), try xtabs:

xtabs(~id+week, data=dat)

   week
id  1 2 3
  1 2 1 1
  2 0 0 1
link|improve this answer
feedback

You could just use the table command:

table(data$id,data$week)

    1 2 3
  1 2 1 1
  2 0 0 1
link|improve this answer
+1 Blast. You have a knack of making my solutions look totally long-winded, roundabout and pedestrian. – Andrie Nov 18 '11 at 17:17
2  
If you have a lot of data and operations that can't be simplified so much, then the 'data.table' package may help you. – Patrick Burns Nov 18 '11 at 18:15
feedback

Your Answer

 
or
required, but never shown

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