Can I ask for the right command in [R] to add the values in two data.frame objects to produce a third "aggregate" data.frame? Here's the data from this post:
Mercy Hospital
Type A B C D E All
Operations 359 1836 299 2086 149 4729
Successful 292 1449 179 434 13 2366
and...
Hope Hospital
Type A B C D E All
Operations 88 514 222 86 45 955
Successful 70 391 113 12 2 588
The way I am doing is long and cumbersome:
rbind(Hope[1,] + Mercy[1,], Hope[2,] + Mercy[2,])
A B C D E All
Operations 447 2350 521 2172 194 5684
Successful 362 1840 292 446 15 2954