Reshaping data with count [duplicate]
This question already has an answer here: Faster ways to calculate frequencies and cast from long to wide 4 answers I have a dataset and I want to reshape it with package reshape2 from R, but I'm getting this error: Aggregation function missing: defaulting to length This is the head() of my data: cat_one customer valor cama A 1 cama B 1 cama C 1 mesa D 1 mesa A 1 mesa A 1 And I want to reshape it like this, with a count between both variables: customer cama mesa A 1 0 B 2 ... C D ... ... This is my code: dcast(dados_teste, cat_one ~ customer, value.var = 'valor') And I'm following this other