Re: [R] adding tables [partial solution]

2013-12-09 Thread Ross Boylan
On Mon, 2013-12-09 at 16:20 -0800, Roy Mendelssohn wrote: > Is this what you are after? > > http://www.statmethods.net/management/merging.html Not directly. Something could probably be fashioned using it and as.data.frame on the result of table(), but merge doesn't sum values. Ross > > -Roy > O

Re: [R] adding tables [partial solution]

2013-12-09 Thread Roy Mendelssohn
Is this what you are after? http://www.statmethods.net/management/merging.html -Roy On Dec 9, 2013, at 4:09 PM, Ross Boylan wrote: > Answering myself... > On Mon, 2013-12-09 at 15:59 -0800, Ross Boylan wrote: >> Can anyone recommend a good way to add tables? > For count data, which were my main

Re: [R] adding tables [partial solution]

2013-12-09 Thread Ross Boylan
Answering myself... On Mon, 2013-12-09 at 15:59 -0800, Ross Boylan wrote: > Can anyone recommend a good way to add tables? For count data, which were my main concern, it looks as if tabulate with nbins will work. I'm not sure how this works with a cross-classifying factor, which I will also need.