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