Let's say I have two columns of data. The first contains categories such as "First", "Second", "Third", etc. The second has numbers which represent the number of times I saw "First".
For example:
Category Frequency
First 10
First 15
First 5
Second 2
Third 14
Third 20
Second 3
I want to sort the data by Category and add up the Frequencies:
Category Frequency
First 30
Second 5
Third 34
How would I do this in R? I looked up the sort and order functions, but I don't know how to sum the Frequencies with the Categories.