If I have a data frame in R:
item, city
1, Turin
2, Rome
3, Napoli
4, Turin
5, Rome
I want to count how many times each city appears and put this number of times in another column that I call counter. How can I do that in R ?
If I have a data frame in R:
item, city
1, Turin
2, Rome
3, Napoli
4, Turin
5, Rome
I want to count how many times each city appears and put this number of times in another column that I call counter. How can I do that in R ?
Assuming your data frame is called city.df and the name of the column is city: