[R] how to extract a specific group of data from a table?

2008-06-03 Thread Manli Yan
   a table with three varialbe:treatment
(low,high),size(large,small),response y
  I want all response y with treatment=low and size=large,
  I try to write as :
treatment-c(low,low,high,high)
size-c(small,large,small,large)
y-c(1,2,4,5)
table1-data.frame(treatment,size,y)
x=table1$y(treatment==low size==large)

this does not work out~

thank you for the help~

[[alternative HTML version deleted]]

__
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] how to extract a specific group of data from a table?

2008-06-03 Thread Jorge Ivan Velez
Dear Manli,

Try this:

table1[table1$treatment==low  table1$size==large,]

HTH,

Jorge


On Tue, Jun 3, 2008 at 11:19 PM, Manli Yan [EMAIL PROTECTED] wrote:

   a table with three varialbe:treatment
 (low,high),size(large,small),response y
  I want all response y with treatment=low and size=large,
  I try to write as :
 treatment-c(low,low,high,high)
 size-c(small,large,small,large)
 y-c(1,2,4,5)
 table1-data.frame(treatment,size,y)
 x=table1$y(treatment==low size==large)

 this does not work out~

 thank you for the help~

[[alternative HTML version deleted]]

 __
 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.


[[alternative HTML version deleted]]

__
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.