[R] Combining tables

Andre Nathan andre at digirati.com.br
Mon Sep 15 03:39:55 CEST 2008


Thanks Jim, it worked great!


On Sun, 2008-09-14 at 21:27 -0400, jim holtman wrote:
> try this:
> 
> > c(tx,ty)
> 1 2 3 3 4
> 3 2 1 4 1
> > z <- c(tx,ty)
> > tapply(z, names(z), sum)
> 1 2 3 4
> 3 2 5 1
> >



More information about the R-help mailing list