Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
the title for this question should be 'how to group columns by sum in R'; have a search on google for that and you will find more answers. – dalloliogm Nov 2 '09 at 12:19
Good suggestion -- I changed the title accordingly. – Dirk Eddelbuettel Nov 2 '09 at 12:55

5 Answers

up vote 20 down vote accepted

Using aggregate:

x <- data.frame(Category=factor(c("First", "First", "First", "Second",
                                  "Third", "Third", "Second")), 
                Frequency=c(10,15,5,2,14,20,3))
aggregate(x$Frequency, by=list(Category=x$Category), FUN=sum)
  Category  x
1    First 30
2   Second  5
3    Third 34

or tapply:

tapply(x$Frequency, x$Category, FUN=sum)
 First Second  Third 
    30      5     34
share|improve this answer
this answer is the only one which doesn't make use of any external library; however, I prefer to use doBy at least, which allows to group by more than one function, and has a fancier syntax. – dalloliogm Nov 2 '09 at 15:48

This is somewhat related to this question.

You can also just use the by() function:

x2 <- by(x$Frequency, x$Category, sum)
do.call(rbind,as.list(x2))

Those other packages (plyr, reshape) have the benefit of returning a data.frame, but it's worth being familiar with by() since it's a base function.

share|improve this answer
"but it's worth being familiar with by() since it's a base function." Yes!!! – Vince Apr 17 '11 at 7:45
library(plyr)
ddply(tbl, .(Category), summarise, sum = sum(Frequency))
share|improve this answer

If x is a dataframe with your data, then the following will do what you want:

require(reshape)
recast(x, Category ~ ., fun.aggregate=sum)
share|improve this answer

Just to add a third option:

require(doBy)
summaryBy(Frequency~Category, data=yourdataframe, FUN=sum)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.