Yes, I think the join functions might need to change in future
inner_join(x, y, c("a" = "b"))
might become
inner_join(x, y, a == b)
# or maybe
inner_join(x, y, x$a == y$b)
# That also paves the way for non-equijoins
inner_join(x, y, (a - b) < 1)
It will be a challenge to switch to this new system without breaking
existing code.
Hadley
> --
> You received this message because you are subscribed to the Google Groups
> "manipulatr" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
manipulatr+...@googlegroups.com.
> To post to this group, send email to
manip...@googlegroups.com.
> Visit this group at
http://groups.google.com/group/manipulatr.
> For more options, visit
https://groups.google.com/d/optout.
--
http://had.co.nz/