I know this is an elementary question but I simply can't find an answer.
I have a matrix and would like to add each column to get its sum.
Adding should be done for each row.
I've tried rowsums but that only works for arrays.
Is there an easy way to do this for matrices?
An example:
1 2
1 4
3 4
4 5
5 5
Desired output:
3
4
7
9
10
?colSums... ? (I don't know what you mean by "rowsums ... only works for arrays" --rowSumscertainly works on matrices, but won't be much use if you want column sums ...) Your terminology isn't very clear -- can you show us a tiny example and the desired results? – Ben Bolker Jan 1 at 19:01rowSums(data): it's more general, but slower. It's unclear to me from the wording whether the OP really wants row sums or column sums, but they're having other problems in any case. – Ben Bolker Jan 1 at 19:04