I am trying to obtain counts of each combination of levels of two variables, \"week\" and \"id\". I\'d like the result to have \"id\" as rows, and \"week\" as columns, and t
You could just use the table command:
table
table(data$id,data$week) 1 2 3 1 2 1 1 2 0 0 1
If "id" and "week" are the only columns in your data frame, you can simply use:
table(data) # week # id 1 2 3 # 1 2 1 1 # 2 0 0 1