Re: [R] weighted ftable

2008-11-26 Thread Andrew Choens
I didn't know that. That is exactly what I need.

On Tue, 2008-11-25 at 13:00 -0800, Thomas Lumley wrote:
 On Mon, 24 Nov 2008, Andrew Choens wrote:
 
  I need to do some fairly deep tables, and ftable() offers most of what I
  need, except for the weighting. With smaller samples, I've just used
  replicate to let me have a weighted data set, but with this data set,
  I'm afraid replicate is going to make my data set too big for R to
  handle comfortably.
 
  That being said, is there some way to weight my table (similar to
  wtd.table) but offer the nuanced control and depth of ftable?
 
 xtabs() will take a weight as the left-hand side of the formula, and its 
 output can then be processed by ftable().
 
   -thomas
 
 Thomas Lumley Assoc. Professor, Biostatistics
 [EMAIL PROTECTED] University of Washington, Seattle
-- 
Insert something humorous here.  :-)

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] weighted ftable

2008-11-25 Thread Thomas Lumley

On Mon, 24 Nov 2008, Andrew Choens wrote:


I need to do some fairly deep tables, and ftable() offers most of what I
need, except for the weighting. With smaller samples, I've just used
replicate to let me have a weighted data set, but with this data set,
I'm afraid replicate is going to make my data set too big for R to
handle comfortably.

That being said, is there some way to weight my table (similar to
wtd.table) but offer the nuanced control and depth of ftable?


xtabs() will take a weight as the left-hand side of the formula, and its 
output can then be processed by ftable().


-thomas

Thomas Lumley   Assoc. Professor, Biostatistics
[EMAIL PROTECTED]   University of Washington, Seattle

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] weighted ftable

2008-11-24 Thread Andrew Choens
I need to do some fairly deep tables, and ftable() offers most of what I
need, except for the weighting. With smaller samples, I've just used
replicate to let me have a weighted data set, but with this data set,
I'm afraid replicate is going to make my data set too big for R to
handle comfortably.

That being said, is there some way to weight my table (similar to
wtd.table) but offer the nuanced control and depth of ftable?

thanks.
-- 
Insert something humorous here.  :-)

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.