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]]
Jorge Ivan Velez
2008-Jun-04 03:27 UTC
[R] how to extract a specific group of data from a table?
Dear Manli, Try this: table1[table1$treatment=="low" & table1$size=="large",] HTH, Jorge On Tue, Jun 3, 2008 at 11:19 PM, Manli Yan <manliyanrhelp@gmail.com> 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]]
Possibly Parallel Threads
- linear model in the repeated data type~
- quite complicated case(the repeated data arranage~)
- linear model with the repeated data type~
- how to create many variables at one time?
- Plot symbols: How to plot (and save) a graphic symbols originating from a table