<jayuan2...@yahoo.com> wrote:
> how can I test every element in a vector whether appears in another vector?
> such as
> a<-c("aa", "bb", "ff", "cc")
> b <-c("oo","jj","bb","cc")

a %in% b
[1] FALSE  TRUE FALSE  TRUE

______________________________________________
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