I have a data frame with two columns. First column contains categories such as "First", "Second", "Third", and the second column has numbers that represent the number of times I saw the specific groups from "Category".
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 sum all the Frequencies:
Category Frequency
First 30
Second 5
Third 34
How would I do this in R?
Using
aggregate
:In the example above, multiple dimensions can be specified in the
list
. Multiple aggregated metrics of the same data type can be incorporated viacbind
:(embedding @thelatemail comment),
aggregate
has a formula interface tooOr if you want to aggregate multiple columns, you could use the
.
notation (works for one column too)or
tapply
:Using this data: