[R] match in dependence of 2 columns

Rui Barradas ruipbarradas at sapo.pt
Thu Feb 14 12:27:48 CET 2013


Hello,

You can do something like this:


join(dat1, dat2[, c("cu.nr", "name", "value")], 
by=c("cu.nr.","name"),type="right")


Hope this helps,

Rui Barradas
Em 14-02-2013 07:03, Mat escreveu:
> thank you, this code works:
>
> library(plyr)
> join(dat1,dat2,by=c("cu.nr.","name"),type="right")
>
> but my dat2 frame has a lot of columns, which i don't want to match.
> How can i say, that only the column "value" should be match to dat1 ?
>
> Thank you.
>
> Mat
>
>
>
>
> --
> View this message in context: http://r.789695.n4.nabble.com/match-in-dependence-of-2-columns-tp4658405p4658508.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at 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.
>



More information about the R-help mailing list