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 question, but the same solution is not working for me.