Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a matrix and would like to get the sum of the columns by rows.

for example

a b c d e

1 2 4 6 9

2 3 5 3 2
3 2 9 8 5

I would like to add 1+2+4+6+9 and 2+3+5+3+2 and 3+2+9+8+5

An added complication would be that I would like to start from the 3rd column and add every second one.

So 4+9 3+2 and 8+5

share|improve this question

1 Answer

up vote 2 down vote accepted

Here is the extraction of the matrix that you need, with the rowSums call:

rowSums(x[,-(1:2)][,c(T,F)])
## [1] 13  7 14
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.