How can I count in R how many times an occurence appears?

125 Views Asked by At

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 ?

1

There are 1 best solutions below

0
On

Assuming your data frame is called city.df and the name of the column is city:

data.frame(table(city.df$city))