Hi,

 I have a data frame df with column names a,b and c.

 Now I want to get a subset of df that satified the condition a == 1 and b 
== 2, how do I specify this.

 For one condition like a == 1 I can use subdf = df[,df$a==1] to get the 
right answer, but
subdf = df[,df$a==1 && df$b ==2] does not return the right answer.

Some quick tips please.

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

Reply via email to